[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 286fe0725a
commit 065bbe82a5

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 {