From: Ted Kremenek Date: Thu, 3 Apr 2008 04:58:29 +0000 (+0000) Subject: Added node_iterator to ExplodedGraph to allow iteration over all nodes in X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7ebde953bb050caa69f791fc1de449d435c6a36f;p=clang Added node_iterator to ExplodedGraph to allow iteration over all nodes in the graph. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@49132 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Analysis/PathSensitive/ExplodedGraph.h b/include/clang/Analysis/PathSensitive/ExplodedGraph.h index 7b224454e5..30d95605ea 100644 --- a/include/clang/Analysis/PathSensitive/ExplodedGraph.h +++ b/include/clang/Analysis/PathSensitive/ExplodedGraph.h @@ -344,11 +344,28 @@ public: } // Iterators. - typedef NodeTy** roots_iterator; - typedef const NodeTy** const_roots_iterator; - typedef NodeTy** eop_iterator; - typedef const NodeTy** const_eop_iterator; + typedef NodeTy** roots_iterator; + typedef const NodeTy** const_roots_iterator; + typedef NodeTy** eop_iterator; + typedef const NodeTy** const_eop_iterator; + typedef typename AllNodesTy::iterator node_iterator; + typedef typename AllNodesTy::const_iterator const_node_iterator; + + node_iterator nodes_begin() { + return Nodes.begin(); + } + + node_iterator nodes_end() { + return Nodes.end(); + } + const_node_iterator nodes_begin() const { + return Nodes.begin(); + } + + const_node_iterator nodes_end() const { + return Nodes.end(); + } roots_iterator roots_begin() { return reinterpret_cast(Roots.begin());