Skip to content

Commit 4bec2f7

Browse files
committed
clang-format
1 parent 6368ca2 commit 4bec2f7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

flang/lib/Semantics/mod-file.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1542,11 +1542,11 @@ Scope *ModFileReader::Read(SourceName name, std::optional<bool> isIntrinsic,
15421542
} else if (requiredHash && *requiredHash != *checkSum) {
15431543
std::string s;
15441544
llvm::raw_string_ostream OS(s);
1545-
OS << "'"s + name.ToString() + "': "s + sourceFile->path() ;
1546-
OS << " Expected: "<< llvm::format_hex( *requiredHash, 8) << " Actual: " << llvm::format_hex( *checkSum, 8) ;
1545+
OS << "'"s + name.ToString() + "': "s + sourceFile->path();
1546+
OS << " Expected: " << llvm::format_hex(*requiredHash, 8)
1547+
<< " Actual: " << llvm::format_hex(*checkSum, 8);
15471548
Say("use", name, ancestorName,
1548-
"File is not the right module file for %s"_err_en_US,
1549-
OS.str());
1549+
"File is not the right module file for %s"_err_en_US, OS.str());
15501550
return nullptr;
15511551
}
15521552
llvm::raw_null_ostream NullStream;

0 commit comments

Comments
 (0)