projects
/
cvc5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e5dc8a6
)
Removing long unsigned operator+ from CDList's const_iterator.
author
Tim King
<taking@cs.nyu.edu>
Fri, 18 May 2012 16:02:50 +0000
(16:02 +0000)
committer
Tim King
<taking@cs.nyu.edu>
Fri, 18 May 2012 16:02:50 +0000
(16:02 +0000)
src/context/cdlist.h
patch
|
blob
|
history
diff --git
a/src/context/cdlist.h
b/src/context/cdlist.h
index 9d770958938588fc2b5b845791ab8a11add24f0d..1630fa586ec585eece8232d32402264f06e60efa 100644
(file)
--- 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 {