aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Analysis/LiveVariables.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Analysis/LiveVariables.cpp b/Analysis/LiveVariables.cpp
index f37239a6a6..3118a30d1f 100644
--- a/Analysis/LiveVariables.cpp
+++ b/Analysis/LiveVariables.cpp
@@ -162,7 +162,7 @@ void TransferFuncs::VisitDeclStmt(DeclStmt* DS) {
void TransferFuncs::BlockStmt_VisitExpr(Expr* E) {
assert (AD.getCFG().isBlkExpr(E));
- static_cast<CFGStmtVisitor<TransferFuncs>*>(this)->Visit(E);
+ VisitChildren(E);
}
} // end anonymous namespace