Skip to content

Commit 446d38c

Browse files
committed
[lldb] Fix test build failure
Caused by commit edd7fed
1 parent 2620ccc commit 446d38c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/unittests/Host/FileSystemTest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ class DummyFileSystem : public vfs::FileSystem {
7474
}
7575
// Map any symlink to "/symlink".
7676
std::error_code getRealPath(const Twine &Path,
77-
SmallVectorImpl<char> &Output) const override {
77+
SmallVectorImpl<char> &Output) override {
7878
auto I = FilesAndDirs.find(Path.str());
7979
if (I == FilesAndDirs.end())
8080
return make_error_code(llvm::errc::no_such_file_or_directory);

0 commit comments

Comments
 (0)