diff options
author | Yang Fan <nullptr.cpp@gmail.com> | 2021-01-30 14:52:43 +0800 |
---|---|---|
committer | Yang Fan <nullptr.cpp@gmail.com> | 2021-01-30 14:52:43 +0800 |
commit | 49556b87ae9b85b883b9b8be432a6f6a769d6021 (patch) | |
tree | e2f380d129aba0249bc4770bc527e2c0b424c945 /llvm/lib/Support/VirtualFileSystem.cpp | |
parent | 0ef25cf558bfaffda4820c8b4e4f2a02d52b0334 (diff) | |
download | llvm-49556b87ae9b85b883b9b8be432a6f6a769d6021.zip llvm-49556b87ae9b85b883b9b8be432a6f6a769d6021.tar.gz llvm-49556b87ae9b85b883b9b8be432a6f6a769d6021.tar.bz2 |
[NFC][VFS] Fix a build warning due to an extra semicolon
Diffstat (limited to 'llvm/lib/Support/VirtualFileSystem.cpp')
-rw-r--r-- | llvm/lib/Support/VirtualFileSystem.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Support/VirtualFileSystem.cpp b/llvm/lib/Support/VirtualFileSystem.cpp index af1a5eb..d231385 100644 --- a/llvm/lib/Support/VirtualFileSystem.cpp +++ b/llvm/lib/Support/VirtualFileSystem.cpp @@ -1758,7 +1758,7 @@ std::unique_ptr<RedirectingFileSystem> RedirectingFileSystem::create( bool RedirectingFileSystem::shouldFallBackToExternalFS( std::error_code EC) const { return shouldUseExternalFS() && EC == llvm::errc::no_such_file_or_directory; -}; +} std::error_code RedirectingFileSystem::makeCanonical(SmallVectorImpl<char> &Path) const { |