Skip to content

Commit d982c6f

Browse files
committed
Format
1 parent 102c152 commit d982c6f

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
@@ -5273,8 +5273,8 @@ bool Sema::IsCXXTriviallyRelocatableType(QualType Type) {
52735273

52745274
QualType BaseElementType = getASTContext().getBaseElementType(Type);
52755275

5276-
if(Type->isVariableArrayType())
5277-
return false;
5276+
if (Type->isVariableArrayType())
5277+
return false;
52785278

52795279
if (BaseElementType.hasNonTrivialObjCLifetime())
52805280
return false;
@@ -5305,8 +5305,8 @@ bool Sema::IsCXXReplaceableType(QualType Type) {
53055305
if (Type.isConstQualified() || Type.isVolatileQualified())
53065306
return false;
53075307

5308-
if(Type->isVariableArrayType())
5309-
return false;
5308+
if (Type->isVariableArrayType())
5309+
return false;
53105310

53115311
QualType BaseElementType =
53125312
getASTContext().getBaseElementType(Type.getUnqualifiedType());

0 commit comments

Comments
 (0)