Revert r106117, which was the result of me misreading the C++98/03

specification.

llvm-svn: 106162
This commit is contained in:
Douglas Gregor 2010-06-16 22:32:18 +00:00
parent f7d7771812
commit 1e69f3c7be
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ inline void addNodeToInterval(Interval *Int, Interval *I) {
template<class NodeTy, class OrigContainer_t, class GT = GraphTraits<NodeTy*>,
class IGT = GraphTraits<Inverse<NodeTy*> > >
class IntervalIterator {
std::stack<std::pair<Interval*, Interval::succ_iterator> > IntStack;
std::stack<std::pair<Interval*, typename Interval::succ_iterator> > IntStack;
std::set<BasicBlock*> Visited;
OrigContainer_t *OrigContainer;
bool IOwnMem; // If True, delete intervals when done with them