Skip to content

Commit abf9110

Browse files
committed
clang-format
1 parent 94ac7f2 commit abf9110

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

clang/lib/AST/ASTContext.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1681,7 +1681,8 @@ CharUnits ASTContext::getDeclAlign(const Decl *D, bool ForAlignof) const {
16811681
if (VD->hasGlobalStorage() && !ForAlignof) {
16821682
uint64_t TypeSize =
16831683
!BaseT->isIncompleteType() ? getTypeSize(T.getTypePtr()) : 0;
1684-
Align = std::max(Align, getTargetInfo().getMinGlobalAlign(TypeSize, VD));
1684+
Align =
1685+
std::max(Align, getTargetInfo().getMinGlobalAlign(TypeSize, VD));
16851686
}
16861687

16871688
// Fields can be subject to extra alignment constraints, like if

0 commit comments

Comments
 (0)