Remove explicit copy assignment operator in favor of the implicit/default to avoid...
[oota-llvm.git] / include / llvm / Analysis / AliasSetTracker.h
index afa7e6fd77f0083486b7ecd7243f8ab071ac22e6..fc45903042f2b11d895332079058c0eb30370edb 100644 (file)
@@ -192,11 +192,6 @@ public:
     }
     bool operator!=(const iterator& x) const { return !operator==(x); }
 
-    const iterator &operator=(const iterator &I) {
-      CurNode = I.CurNode;
-      return *this;
-    }
-
     value_type &operator*() const {
       assert(CurNode && "Dereferencing AliasSet.end()!");
       return *CurNode;