diff options
Diffstat (limited to 'lldb/source/Utility/Reproducer.cpp')
-rw-r--r-- | lldb/source/Utility/Reproducer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Utility/Reproducer.cpp b/lldb/source/Utility/Reproducer.cpp index 967521c4364..f5ca39cddc7 100644 --- a/lldb/source/Utility/Reproducer.cpp +++ b/lldb/source/Utility/Reproducer.cpp @@ -221,7 +221,7 @@ bool Loader::HasFile(StringRef file) { } llvm::Expected<std::unique_ptr<DataRecorder>> -DataRecorder::Create(FileSpec filename) { +DataRecorder::Create(const FileSpec &filename) { std::error_code ec; auto recorder = llvm::make_unique<DataRecorder>(std::move(filename), ec); if (ec) |