Adding VisitCXXPseudoDestructorExpr callback to the ASTImporter.
Note: This is based on: https://github.com/haoNoQ/clang/blob/summary-ipa-draft/lib/AST/ASTImporter.cpp#L7624 .
Differential D38843
[ASTImporter] Support importing CXXPseudoDestructorExpr szepet on Oct 12 2017, 5:14 AM. Authored by
Details Adding VisitCXXPseudoDestructorExpr callback to the ASTImporter. Note: This is based on: https://github.com/haoNoQ/clang/blob/summary-ipa-draft/lib/AST/ASTImporter.cpp#L7624 .
Diff Detail Event Timeline
Comment Actions Hello Peter, Patch is almost OK but there are some minor issues.
|
Does E->getBase() guaranteed to return non-null? What happens when this node was constructed using EmptyShell? Shouldn't we check for that somehow? When can that happen?