Removing long unsigned operator+ from CDList's const_iterator.
authorTim King <taking@cs.nyu.edu>
Fri, 18 May 2012 16:02:50 +0000 (16:02 +0000)
committerTim King <taking@cs.nyu.edu>
Fri, 18 May 2012 16:02:50 +0000 (16:02 +0000)
src/context/cdlist.h

index 9d770958938588fc2b5b845791ab8a11add24f0d..1630fa586ec585eece8232d32402264f06e60efa 100644 (file)
@@ -389,11 +389,6 @@ public:
       return const_iterator(d_it + off);
     }
 
-    /** operator+ */
-    const_iterator operator+(long unsigned int off) const {
-      return const_iterator(d_it + off);
-    }
-
     // Postfix operations on iterators: requires a Proxy object to
     // hold the intermediate value for dereferencing
     class Proxy {