[clangd] Fix Windows build after r350531

llvm-svn: 350542
This commit is contained in:
Ilya Biryukov 2019-01-07 17:03:15 +00:00
parent 70038e01c8
commit 47f174a2be

View File

@ -75,7 +75,7 @@ clang::clangd::RealFileSystemProvider::getFileSystem() const {
// 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