From: Mike Stump Date: Wed, 22 Jul 2009 16:55:20 +0000 (+0000) Subject: Add some documentation, to make it so the next person doens't select X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0c8c5365be0176e8399e97d7da3293c79bc9da24;p=clang Add some documentation, to make it so the next person doens't select the wrong function. :-) git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@76752 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Analysis/CFG.h b/include/clang/Analysis/CFG.h index 90b6cdc08d..34dedc074a 100644 --- a/include/clang/Analysis/CFG.h +++ b/include/clang/Analysis/CFG.h @@ -280,6 +280,8 @@ public: BlkExprNumTy getBlkExprNum(const Stmt* S); unsigned getNumBlkExprs(); + /// getNumBlockIDs - Returns the total number of BlockIDs allocated (which + /// start at 0). unsigned getNumBlockIDs() const { return NumBlockIDs; } //===--------------------------------------------------------------------===//