The matcher
varDecl(hasDescendant(
callExpr(hasDeclaration(functionDecl(unless(isNoThrow()))))))
didn't match calls from default arguments because the expression
for a CXXDefaultArgExpr was not visited.
Differential D25992
[RecursiveASTVisitor] Visit the implicit expression of a CXXDefaultArgExpr Authored by malcolm.parsons on Oct 26 2016, 8:22 AM.
Details
The matcher callExpr(hasDeclaration(functionDecl(unless(isNoThrow())))))) didn't match calls from default arguments because the expression
Diff Detail
|