commit | a50a5cd9db67f061c94557d188b992be34ccad2f | [log] [tgz] |
---|---|---|
author | Daniel Dunbar <daniel@zuster.org> | Thu Mar 08 20:28:59 2012 +0000 |
committer | Daniel Dunbar <daniel@zuster.org> | Thu Mar 08 20:28:59 2012 +0000 |
tree | ff1847f1011a734c293316d14ab254fa28d1982d | |
parent | 7a8c758868f00b7fbe105ad2b469a289cfc92b6d [diff] [blame] |
Remove stray semi-colon. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@152331 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Analysis/CallGraph.cpp b/lib/Analysis/CallGraph.cpp index 2aaeaf1..79519d7 100644 --- a/lib/Analysis/CallGraph.cpp +++ b/lib/Analysis/CallGraph.cpp
@@ -63,7 +63,7 @@ CallGraphNode *CalleeNode = G->getOrInsertFunction(CalleeDecl); CallerNode->addCallee(CalleeNode, G); } - }; + } void VisitChildren(Stmt *S) { for (Stmt::child_range I = S->children(); I; ++I)