Restore the gcc build
authorDavid Majnemer <david.majnemer@gmail.com>
Sun, 15 Mar 2015 06:11:24 +0000 (06:11 +0000)
committerDavid Majnemer <david.majnemer@gmail.com>
Sun, 15 Mar 2015 06:11:24 +0000 (06:11 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@232314 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/ADT/ImmutableSet.h

index eee3ff9230f8c7710635c6494f179d613ec98567..a7444117b11601ed3b17df40456ffef37997930c 100644 (file)
@@ -652,6 +652,7 @@ public:
                    Flags=0x3 };
 
   typedef ImutAVLTree<ImutInfo> TreeTy;
+  typedef ImutAVLTreeGenericIterator<ImutInfo> Self;
 
   ImutAVLTreeGenericIterator() {}
   ImutAVLTreeGenericIterator(const TreeTy *Root) {
@@ -692,15 +693,11 @@ public:
     }
   }
 
-  bool operator==(const ImutAVLTreeGenericIterator &x) const {
-    return stack == x.stack;
-  }
+  bool operator==(const Self &x) const { return stack == x.stack; }
 
-  bool operator!=(const ImutAVLTreeGenericIterator &x) const {
-    return !(*this == x);
-  }
+  bool operator!=(const Self &x) const { return !operator==(x); }
 
-  ImutAVLTreeGenericIterator &operator++() {
+  Self &operator++() {
     assert(!stack.empty());
     TreeTy* Current = reinterpret_cast<TreeTy*>(stack.back() & ~Flags);
     assert(Current);
@@ -726,7 +723,7 @@ public:
     return *this;
   }
 
-  ImutAVLTreeGenericIterator &operator--() {
+  Self &operator--() {
     assert(!stack.empty());
     TreeTy* Current = reinterpret_cast<TreeTy*>(stack.back() & ~Flags);
     assert(Current);
@@ -759,7 +756,7 @@ class ImutAVLTreeInOrderIterator {
 
 public:
   typedef ImutAVLTree<ImutInfo> TreeTy;
-  typedef ImutAVLTreeInOrderIterator<ImutInfo> ImutAVLTreeGenericIterator;
+  typedef ImutAVLTreeInOrderIterator<ImutInfo> Self;
 
   ImutAVLTreeInOrderIterator(const TreeTy* Root) : InternalItr(Root) {
     if (Root)
@@ -768,18 +765,14 @@ public:
 
   ImutAVLTreeInOrderIterator() : InternalItr() {}
 
-  bool operator==(const ImutAVLTreeGenericIterator &x) const {
-    return InternalItr == x.InternalItr;
-  }
+  bool operator==(const Self &x) const { return InternalItr == x.InternalItr; }
 
-  bool operator!=(const ImutAVLTreeGenericIterator &x) const {
-    return !(*this == x);
-  }
+  bool operator!=(const Self &x) const { return !(*this == x); }
 
   TreeTy *operator*() const { return *InternalItr; }
   TreeTy *operator->() const { return *InternalItr; }
 
-  ImutAVLTreeGenericIterator &operator++() {
+  Self &operator++() {
     do ++InternalItr;
     while (!InternalItr.atEnd() &&
            InternalItr.getVisitState() != InternalIteratorTy::VisitedLeft);
@@ -787,7 +780,7 @@ public:
     return *this;
   }
 
-  ImutAVLTreeGenericIterator &operator--() {
+  Self &operator--() {
     do --InternalItr;
     while (!InternalItr.atBeginning() &&
            InternalItr.getVisitState() != InternalIteratorTy::VisitedLeft);