Skip to content

Commit 387f312

Browse files
committed
fmt
1 parent 3f98ce1 commit 387f312

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

clang/lib/Serialization/ASTWriterDecl.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ bool clang::MayDefAffectABI(const Decl *D) {
283283
// use, no matter whether they've been explicitly instantiated etc.
284284
if (!FD->isUserProvided())
285285
return true;
286-
286+
287287
if (FD->isDependentContext())
288288
return true;
289289

clang/lib/Serialization/GeneratePCH.cpp

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,10 +82,11 @@ ASTDeserializationListener *PCHGenerator::GetASTDeserializationListener() {
8282
return &Writer;
8383
}
8484

85-
ThinBMIGenerator::ThinBMIGenerator(
86-
const Preprocessor &PP, InMemoryModuleCache &ModuleCache,
87-
StringRef OutputFile, std::shared_ptr<PCHBuffer> Buffer,
88-
bool IncludeTimestamps)
85+
ThinBMIGenerator::ThinBMIGenerator(const Preprocessor &PP,
86+
InMemoryModuleCache &ModuleCache,
87+
StringRef OutputFile,
88+
std::shared_ptr<PCHBuffer> Buffer,
89+
bool IncludeTimestamps)
8990
: PCHGenerator(
9091
PP, ModuleCache, OutputFile, llvm::StringRef(), Buffer,
9192
/*Extensions=*/ArrayRef<std::shared_ptr<ModuleFileExtension>>(),

0 commit comments

Comments
 (0)