summaryrefslogtreecommitdiff
path: root/src/context/cdlist.h
diff options
context:
space:
mode:
authorTim King <taking@cs.nyu.edu>2012-05-18 16:02:50 +0000
committerTim King <taking@cs.nyu.edu>2012-05-18 16:02:50 +0000
commit76b8bdc51693af0867de94fe6002e8a8bec9e5f9 (patch)
tree1c73cfc7e068c78b0603f5572eba1ff390225bd2 /src/context/cdlist.h
parente5dc8a6713d21adb9ccf46bfe4f02f9a0337d47a (diff)
Removing long unsigned operator+ from CDList's const_iterator.
Diffstat (limited to 'src/context/cdlist.h')
-rw-r--r--src/context/cdlist.h5
1 files changed, 0 insertions, 5 deletions
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 {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback