Fix compilation failure on Windows.

This was introduced earlier but apparently used an incorrect
class name so it doesn't compile on Windows.

llvm-svn: 348176
This commit is contained in:
Zachary Turner 2018-12-03 19:59:00 +00:00
parent f2bda5e43f
commit aa2711f1f8
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,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 VolatileFSProvider(vfs::getRealFileSystem());
return new VolatileFileSystem(vfs::getRealFileSystem());
#else
return vfs::getRealFileSystem();
#endif