File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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 ());
You can’t perform that action at this time.
0 commit comments