Skip to content

Commit a473deb

Browse files
committed
Format
1 parent cfde8a5 commit a473deb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

clang/lib/Sema/SemaExprCXX.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5600,8 +5600,8 @@ bool Sema::IsCXXTriviallyRelocatableType(QualType Type) {
56005600

56015601
QualType BaseElementType = getASTContext().getBaseElementType(Type);
56025602

5603-
if(Type->isVariableArrayType())
5604-
return false;
5603+
if (Type->isVariableArrayType())
5604+
return false;
56055605

56065606
if (BaseElementType.hasNonTrivialObjCLifetime())
56075607
return false;
@@ -5632,8 +5632,8 @@ bool Sema::IsCXXReplaceableType(QualType Type) {
56325632
if (Type.isConstQualified() || Type.isVolatileQualified())
56335633
return false;
56345634

5635-
if(Type->isVariableArrayType())
5636-
return false;
5635+
if (Type->isVariableArrayType())
5636+
return false;
56375637

56385638
QualType BaseElementType =
56395639
getASTContext().getBaseElementType(Type.getUnqualifiedType());

0 commit comments

Comments
 (0)