From: Daniel Dunbar Date: Thu, 8 Mar 2012 20:28:59 +0000 (+0000) Subject: Remove stray semi-colon. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a50a5cd9db67f061c94557d188b992be34ccad2f;p=clang 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 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)