[llvm-commits] [llvm] r106162 - /llvm/trunk/include/llvm/Analysis/IntervalIterator.h

Douglas Gregor dgregor at apple.com
Wed Jun 16 15:32:18 PDT 2010


Author: dgregor
Date: Wed Jun 16 17:32:18 2010
New Revision: 106162

URL: http://llvm.org/viewvc/llvm-project?rev=106162&view=rev
Log:
Revert r106117, which was the result of me misreading the C++98/03
specification.

Modified:
    llvm/trunk/include/llvm/Analysis/IntervalIterator.h

Modified: llvm/trunk/include/llvm/Analysis/IntervalIterator.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Analysis/IntervalIterator.h?rev=106162&r1=106161&r2=106162&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Analysis/IntervalIterator.h (original)
+++ llvm/trunk/include/llvm/Analysis/IntervalIterator.h Wed Jun 16 17:32:18 2010
@@ -88,7 +88,7 @@
 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





More information about the llvm-commits mailing list