[llvm-commits] [llvm] r80227 - /llvm/trunk/include/llvm/Analysis/ConstantsScanner.h

Gabor Greif ggreif at gmail.com
Wed Aug 26 23:59:20 PDT 2009


Author: ggreif
Date: Thu Aug 27 01:59:20 2009
New Revision: 80227

URL: http://llvm.org/viewvc/llvm-project?rev=80227&view=rev
Log:
the buildbots revealed one more breakage. fix. (why didn't I see this?)

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

Modified: llvm/trunk/include/llvm/Analysis/ConstantsScanner.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Analysis/ConstantsScanner.h?rev=80227&r1=80226&r2=80227&view=diff

==============================================================================
--- llvm/trunk/include/llvm/Analysis/ConstantsScanner.h (original)
+++ llvm/trunk/include/llvm/Analysis/ConstantsScanner.h Thu Aug 27 01:59:20 2009
@@ -22,7 +22,7 @@
 
 class Constant;
 
-class constant_iterator : public forward_iterator<const Constant, ptrdiff_t> {
+class constant_iterator : public std::iterator<std::forward_iterator_tag, const Constant, ptrdiff_t> {
   const_inst_iterator InstI;                // Method instruction iterator
   unsigned OpIdx;                           // Operand index
 





More information about the llvm-commits mailing list