delete iteratos's post increment op.

This commit is contained in:
Oliver Kowalke
2015-02-16 18:35:03 +01:00
parent a373afcf34
commit aebdd81a5d

View File

@@ -123,11 +123,7 @@ public:
return * this;
}
iterator operator++( int) {
iterator tmp( * this);
++*this;
return tmp;
}
iterator operator++( int) = delete;
reference_t operator*() const {
return * c_->cb_->other->t;
@@ -240,11 +236,7 @@ public:
return * this;
}
iterator operator++( int) {
iterator tmp( * this);
++*this;
return tmp;
}
iterator operator++( int) = delete;
reference_t operator*() const {
return * c_->cb_->other->t;