From 41f98a295affaca4455d180f0566335179f39fc3 Mon Sep 17 00:00:00 2001 From: Douglas Gregor Date: Wed, 16 Jun 2010 22:32:18 +0000 Subject: [PATCH] Revert r106117, which was the result of me misreading the C++98/03 specification. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@106162 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Analysis/IntervalIterator.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/Analysis/IntervalIterator.h b/include/llvm/Analysis/IntervalIterator.h index 637dea55c19..d842840b66b 100644 --- a/include/llvm/Analysis/IntervalIterator.h +++ b/include/llvm/Analysis/IntervalIterator.h @@ -88,7 +88,7 @@ inline void addNodeToInterval(Interval *Int, Interval *I) { template, class IGT = GraphTraits > > class IntervalIterator { - std::stack > IntStack; + std::stack > IntStack; std::set Visited; OrigContainer_t *OrigContainer; bool IOwnMem; // If True, delete intervals when done with them