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
diff --git a/clang-tools-extra/clangd/FSProvider.cpp b/clang-tools-extra/clangd/FSProvider.cpp
index d94be5b..ccb64c5 100644
--- a/clang-tools-extra/clangd/FSProvider.cpp
+++ b/clang-tools-extra/clangd/FSProvider.cpp
@@ -76,7 +76,7 @@
// 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