We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfde8a5 commit a473debCopy full SHA for a473deb
clang/lib/Sema/SemaExprCXX.cpp
@@ -5600,8 +5600,8 @@ bool Sema::IsCXXTriviallyRelocatableType(QualType Type) {
5600
5601
QualType BaseElementType = getASTContext().getBaseElementType(Type);
5602
5603
- if(Type->isVariableArrayType())
5604
- return false;
+ if (Type->isVariableArrayType())
+ return false;
5605
5606
if (BaseElementType.hasNonTrivialObjCLifetime())
5607
return false;
@@ -5632,8 +5632,8 @@ bool Sema::IsCXXReplaceableType(QualType Type) {
5632
if (Type.isConstQualified() || Type.isVolatileQualified())
5633
5634
5635
5636
5637
5638
QualType BaseElementType =
5639
getASTContext().getBaseElementType(Type.getUnqualifiedType());
0 commit comments