Author: Jonas Devlieghere Date: 2021-01-22T15:04:17-08:00 New Revision: 3a50ed84f4823fb0e7b385cc22fef12435dfd376
URL: https://github.com/llvm/llvm-project/commit/3a50ed84f4823fb0e7b385cc22fef12435dfd376 DIFF: https://github.com/llvm/llvm-project/commit/3a50ed84f4823fb0e7b385cc22fef12435dfd376.diff LOG: [lldb] FixFileSystem::GetExternalPath for VFS API change Added: Modified: lldb/source/Host/common/FileSystem.cpp Removed: ################################################################################ diff --git a/lldb/source/Host/common/FileSystem.cpp b/lldb/source/Host/common/FileSystem.cpp index 8a6c03f72b6f..9fa8854d950e 100644 --- a/lldb/source/Host/common/FileSystem.cpp +++ b/lldb/source/Host/common/FileSystem.cpp @@ -479,7 +479,7 @@ ErrorOr<std::string> FileSystem::GetExternalPath(const llvm::Twine &path) { // If VFS mapped we know the underlying FS is a RedirectingFileSystem. ErrorOr<vfs::RedirectingFileSystem::Entry *> E = - static_cast<vfs::RedirectingFileSystem &>(*m_fs).lookupPath(path); + static_cast<vfs::RedirectingFileSystem &>(*m_fs).lookupPath(path.str()); if (!E) { if (E.getError() == llvm::errc::no_such_file_or_directory) { return path.str(); _______________________________________________ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits