Author: Jan Svoboda Date: 2024-04-12T10:48:54-07:00 New Revision: 446d38c65f72fd5d242a64182b05683577f683d3
URL: https://github.com/llvm/llvm-project/commit/446d38c65f72fd5d242a64182b05683577f683d3 DIFF: https://github.com/llvm/llvm-project/commit/446d38c65f72fd5d242a64182b05683577f683d3.diff LOG: [lldb] Fix test build failure Caused by commit edd7fed9da48c0e708cce9bd4d305ae43d8bd77c Added: Modified: lldb/unittests/Host/FileSystemTest.cpp Removed: ################################################################################ diff --git a/lldb/unittests/Host/FileSystemTest.cpp b/lldb/unittests/Host/FileSystemTest.cpp index 4ed9beff4d303c..3b5ee7c8bc2237 100644 --- a/lldb/unittests/Host/FileSystemTest.cpp +++ b/lldb/unittests/Host/FileSystemTest.cpp @@ -74,7 +74,7 @@ class DummyFileSystem : public vfs::FileSystem { } // Map any symlink to "/symlink". std::error_code getRealPath(const Twine &Path, - SmallVectorImpl<char> &Output) const override { + SmallVectorImpl<char> &Output) override { auto I = FilesAndDirs.find(Path.str()); if (I == FilesAndDirs.end()) return make_error_code(llvm::errc::no_such_file_or_directory); _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits