================
@@ -731,6 +786,10 @@ class TrivialFunctionAnalysisVisitor
return true;
}
+ bool VisitCXXDefaultInitExpr(const CXXDefaultInitExpr *E) {
+ return Visit(E->getExpr());
+ }
----------------
steakhal wrote:
Ah, this is painful. So we need to add manual transitions to "mimic" a
recursive AST visitor.
This makes me wonder if we should have used that instead of a StmtVisitor. WDYT?
I'll try to just close my eyes -.-
https://github.com/llvm/llvm-project/pull/181576
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits