From: Tim King Date: Fri, 18 May 2012 16:02:50 +0000 (+0000) Subject: Removing long unsigned operator+ from CDList's const_iterator. X-Git-Tag: cvc5-1.0.0~8154 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=76b8bdc51693af0867de94fe6002e8a8bec9e5f9;p=cvc5.git Removing long unsigned operator+ from CDList's const_iterator. --- diff --git a/src/context/cdlist.h b/src/context/cdlist.h index 9d7709589..1630fa586 100644 --- a/src/context/cdlist.h +++ b/src/context/cdlist.h @@ -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 {