summaryrefslogtreecommitdiff
path: root/include/llvm/Support/GetElementPtrTypeIterator.h
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2009-08-27 06:41:46 +0000
committerGabor Greif <ggreif@gmail.com>2009-08-27 06:41:46 +0000
commitf0891be8bdbeeadb39da5575273b6645755fa383 (patch)
tree344541d698e7fdc4ee3f8a118d3590da66510e6d /include/llvm/Support/GetElementPtrTypeIterator.h
parent199ba42cbf56b2fc9c708edb4f08f97dd99ddd49 (diff)
downloadllvm-f0891be8bdbeeadb39da5575273b6645755fa383.tar.gz
llvm-f0891be8bdbeeadb39da5575273b6645755fa383.tar.bz2
llvm-f0891be8bdbeeadb39da5575273b6645755fa383.tar.xz
Clean up the minor mess I caused with removing iterator.h. I shall take care of 80-col violations and the FIXME later. (Thanks goodness that I live in another continent, so the monkeypox did not strike me :-)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80224 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/GetElementPtrTypeIterator.h')
-rw-r--r--include/llvm/Support/GetElementPtrTypeIterator.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Support/GetElementPtrTypeIterator.h b/include/llvm/Support/GetElementPtrTypeIterator.h
index e1cda75c5f..9430477f07 100644
--- a/include/llvm/Support/GetElementPtrTypeIterator.h
+++ b/include/llvm/Support/GetElementPtrTypeIterator.h
@@ -21,8 +21,8 @@
namespace llvm {
template<typename ItTy = User::const_op_iterator>
class generic_gep_type_iterator
- : public forward_iterator<const Type *, ptrdiff_t> {
- typedef forward_iterator<const Type*, ptrdiff_t> super;
+ : public std::iterator<std::forward_iterator_tag, const Type *, ptrdiff_t> {
+ typedef std::iterator<std::forward_iterator_tag, const Type *, ptrdiff_t> super;
ItTy OpIt;
const Type *CurTy;