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 08e1a33 commit 636b14fCopy full SHA for 636b14f
clang/lib/Sema/SemaChecking.cpp
@@ -12048,8 +12048,8 @@ void Sema::CheckForIntOverflow (const Expr *E) {
12048
New && New->isArray()) {
12049
if (auto ArraySize = New->getArraySize())
12050
Exprs.push_back(*ArraySize);
12051
- } else if (const auto *Mte = dyn_cast<MaterializeTemporaryExpr>(OriginalE))
12052
- Exprs.push_back(Mte->getSubExpr());
+ } else if (const auto *MTE = dyn_cast<MaterializeTemporaryExpr>(OriginalE))
+ Exprs.push_back(MTE->getSubExpr());
12053
} while (!Exprs.empty());
12054
}
12055
0 commit comments