diff options
author | Chris Lattner <sabre@nondot.org> | 2002-07-25 15:00:45 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-07-25 15:00:45 +0000 |
commit | c6a4bf1251f3dc44d2164c0847ce0b19ed7409a2 (patch) | |
tree | ef0f77705b3b648297819912eeabac859a66255b /include/llvm/Analysis/DataStructureGraph.h | |
parent | de32fedb8c6ec95258dd9e3c104f0e7e49f283cd (diff) |
*** empty log message ***
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3077 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Analysis/DataStructureGraph.h')
-rw-r--r-- | include/llvm/Analysis/DataStructureGraph.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/llvm/Analysis/DataStructureGraph.h b/include/llvm/Analysis/DataStructureGraph.h index 0a25622d45..4397f621c1 100644 --- a/include/llvm/Analysis/DataStructureGraph.h +++ b/include/llvm/Analysis/DataStructureGraph.h @@ -9,10 +9,11 @@ #ifndef LLVM_ANALYSIS_DATASTRUCTURE_GRAPH_H #define LLVM_ANALYSIS_DATASTRUCTURE_GRAPH_H -#include "Support/GraphTraits.h" #include "llvm/Analysis/DataStructure.h" +#include "Support/GraphTraits.h" +#include "Support/iterator" -class DSNodeIterator : public std::forward_iterator<DSNode, ptrdiff_t> { +class DSNodeIterator : public forward_iterator<DSNode, ptrdiff_t> { friend class DSNode; DSNode * const Node; unsigned Link; |