diff options
author | Chris Lattner <sabre@nondot.org> | 2002-10-01 22:34:45 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-10-01 22:34:45 +0000 |
commit | 11aec6cc7d2f1705d410df6ee25555f2d7101f30 (patch) | |
tree | 6244a0c6929174c7ced176e56be79e2d3a96a4ad /include/llvm/Analysis/DataStructureGraph.h | |
parent | 1c7ce2c7feece4e1b9b9941cbaf940857a538025 (diff) |
Check in DataStructure rewrite so far.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3998 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Analysis/DataStructureGraph.h')
-rw-r--r-- | include/llvm/Analysis/DataStructureGraph.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/llvm/Analysis/DataStructureGraph.h b/include/llvm/Analysis/DataStructureGraph.h index 4397f621c1..d82e2e5b1b 100644 --- a/include/llvm/Analysis/DataStructureGraph.h +++ b/include/llvm/Analysis/DataStructureGraph.h @@ -13,6 +13,8 @@ #include "Support/GraphTraits.h" #include "Support/iterator" +#if 0 + class DSNodeIterator : public forward_iterator<DSNode, ptrdiff_t> { friend class DSNode; DSNode * const Node; @@ -67,3 +69,5 @@ inline DSNode::iterator DSNode::begin() { return DSNodeIterator(this); } inline DSNode::iterator DSNode::end() { return DSNodeIterator(this, false); } #endif + +#endif |