From: Jonathan Roelofs Date: Mon, 27 Jul 2015 16:05:36 +0000 (+0000) Subject: Analysis: Fix example usage comment in CFG.cpp. NFC X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=15743a9a2c682d574bfda9e49295c709b5d9d19d;p=clang Analysis: Fix example usage comment in CFG.cpp. NFC Patch by Vedant Kumar! git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@243275 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/CFG.cpp b/lib/Analysis/CFG.cpp index 73b6fc6c3c..07b80edfe6 100644 --- a/lib/Analysis/CFG.cpp +++ b/lib/Analysis/CFG.cpp @@ -284,7 +284,7 @@ reverse_children::reverse_children(Stmt *S) { /// Example usage: /// /// CFGBuilder builder; -/// CFG* cfg = builder.BuildAST(stmt1); +/// std::unique_ptr cfg = builder.buildCFG(decl, stmt1); /// /// CFG construction is done via a recursive walk of an AST. We actually parse /// the AST in reverse order so that the successor of a basic block is