forked from OSchip/llvm-project
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:
parent
f2bda5e43f
commit
aa2711f1f8
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue