Skip to content

Commit d3fb2f2

Browse files
committed
Sigh i really thought i had the formatting correct
1 parent ab3b7c3 commit d3fb2f2

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

clang/lib/Sema/SemaDecl.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19406,8 +19406,10 @@ void Sema::ActOnFields(Scope *S, SourceLocation RecLoc, Decl *EnclosingDecl,
1940619406

1940719407
if (Record && FD->getType().isVolatileQualified())
1940819408
Record->setHasVolatileMember(true);
19409-
bool ReportMSBitfieldStoragePacking = Record && PreviousField &&
19410-
!Diags.isIgnored(diag::warn_ms_bitfield_mismatched_storage_packing, Record->getLocation());
19409+
bool ReportMSBitfieldStoragePacking =
19410+
Record && PreviousField &&
19411+
!Diags.isIgnored(diag::warn_ms_bitfield_mismatched_storage_packing,
19412+
Record->getLocation());
1941119413
auto IsNonDependentBitField = [](const FieldDecl *FD) {
1941219414
return FD->isBitField() && !FD->getType()->isDependentType();
1941319415
};

0 commit comments

Comments
 (0)