From: Argyrios Kyrtzidis Date: Sun, 15 Aug 2010 20:53:20 +0000 (+0000) Subject: Call the base class in StmtProfiler::VisitOverloadExpr. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7b3e3f6bf69780ac0bd85f55fc71c0c084367977;p=clang Call the base class in StmtProfiler::VisitOverloadExpr. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@111110 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/AST/StmtProfile.cpp b/lib/AST/StmtProfile.cpp index 5beefd14f9..e7aa9db7e7 100644 --- a/lib/AST/StmtProfile.cpp +++ b/lib/AST/StmtProfile.cpp @@ -758,6 +758,7 @@ void StmtProfiler::VisitCXXPseudoDestructorExpr(CXXPseudoDestructorExpr *S) { } void StmtProfiler::VisitOverloadExpr(OverloadExpr *S) { + VisitExpr(S); VisitNestedNameSpecifier(S->getQualifier()); VisitName(S->getName()); ID.AddBoolean(S->hasExplicitTemplateArgs());