summaryrefslogtreecommitdiffstats
path: root/lib/Analysis
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2012-03-08 20:28:59 +0000
committerDaniel Dunbar <daniel@zuster.org>2012-03-08 20:28:59 +0000
commita50a5cd9db67f061c94557d188b992be34ccad2f (patch)
treeff1847f1011a734c293316d14ab254fa28d1982d /lib/Analysis
parent7a8c758868f00b7fbe105ad2b469a289cfc92b6d (diff)
Remove stray semi-colon.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@152331 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis')
-rw-r--r--lib/Analysis/CallGraph.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/CallGraph.cpp b/lib/Analysis/CallGraph.cpp
index 2aaeaf132d..79519d7512 100644
--- a/lib/Analysis/CallGraph.cpp
+++ b/lib/Analysis/CallGraph.cpp
@@ -63,7 +63,7 @@ public:
CallGraphNode *CalleeNode = G->getOrInsertFunction(CalleeDecl);
CallerNode->addCallee(CalleeNode, G);
}
- };
+ }
void VisitChildren(Stmt *S) {
for (Stmt::child_range I = S->children(); I; ++I)