[NFC][VFS] Fix a build warning due to an extra semicolon

This commit is contained in:
Yang Fan 2021-01-30 14:52:43 +08:00
parent 0ef25cf558
commit 49556b87ae
No known key found for this signature in database
GPG Key ID: 717E4EB972E515EF
1 changed files with 1 additions and 1 deletions

View File

@ -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 {