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
|
// FIXME: Try to use a similar approach in Sema instead of relying on
|
||||||
// propagation of the 'isVolatile' flag through all layers.
|
// propagation of the 'isVolatile' flag through all layers.
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
return new VolatileFSProvider(vfs::getRealFileSystem());
|
return new VolatileFileSystem(vfs::getRealFileSystem());
|
||||||
#else
|
#else
|
||||||
return vfs::getRealFileSystem();
|
return vfs::getRealFileSystem();
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue