[clang-tools-extra] r350542 - [clangd] Fix Windows build after r350531
Ilya Biryukov via cfe-commits
cfe-commits at lists.llvm.org
Mon Jan 7 09:03:16 PST 2019
Author: ibiryukov
Date: Mon Jan 7 09:03:15 2019
New Revision: 350542
URL: http://llvm.org/viewvc/llvm-project?rev=350542&view=rev
Log:
[clangd] Fix Windows build after r350531
Modified:
clang-tools-extra/trunk/clangd/FSProvider.cpp
Modified: clang-tools-extra/trunk/clangd/FSProvider.cpp
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/clangd/FSProvider.cpp?rev=350542&r1=350541&r2=350542&view=diff
==============================================================================
--- clang-tools-extra/trunk/clangd/FSProvider.cpp (original)
+++ clang-tools-extra/trunk/clangd/FSProvider.cpp Mon Jan 7 09:03:15 2019
@@ -75,7 +75,7 @@ clang::clangd::RealFileSystemProvider::g
// FIXME: Try to use a similar approach in Sema instead of relying on
// propagation of the 'isVolatile' flag through all layers.
#ifdef _WIN32
- return new VolatileFileSystem(vfs::getRealFileSystem());
+ return new VolatileFileSystem(llvm::vfs::getRealFileSystem());
#else
return llvm::vfs::getRealFileSystem();
#endif
More information about the cfe-commits
mailing list