From 95b1a9055ea7a27c231f6e082e5bcee4947ea0ce Mon Sep 17 00:00:00 2001 From: Ted Kremenek Date: Mon, 14 Jan 2008 18:41:42 +0000 Subject: [PATCH] Cleaned up comment. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@45969 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/clang/AST/CFG.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/include/clang/AST/CFG.h b/include/clang/AST/CFG.h index 28e73f3ba6..fc6f682199 100644 --- a/include/clang/AST/CFG.h +++ b/include/clang/AST/CFG.h @@ -288,10 +288,11 @@ private: // to integers to record block-level expressions. void* BlkExprMap; - // opaque pointer to prevent inclusion of . This records a set of - // CFGBlock edges for using with ProgramPoint. These edges represent - // the edges that cannot be succinctly represented, and in practice this - // set should be small. + /// BlkEdgeSet - An opaque pointer to prevent inclusion of . + /// The set contains std::pair objects that have + /// stable references for use by the 'BlockEdge' class. This set is intended + /// to be sparse, as it only contains edges whether both the source + /// and destination block have multiple successors/predecessors. void* BlkEdgeSet; friend class BlockEdge; -- 2.50.1