Check in DataStructure rewrite so far.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3998 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner
2002-10-01 22:34:45 +00:00
parent 1c7ce2c7fe
commit 11aec6cc7d
5 changed files with 44 additions and 658 deletions
@@ -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