cleaned up custom iterator example

pull/2145/head
Francois Chabot 2020-05-28 10:14:55 -04:00
parent 897061c434
commit 248f310215
1 changed files with 3 additions and 4 deletions

View File

@ -454,7 +454,7 @@ struct MyIterator {
}
bool operator!=(const MyIterator& rhs) const {
return rhs.pos != pos || rhs.target != target;
return rhs.target != target;
}
reference operator*() const {
@ -462,15 +462,14 @@ struct MyIterator {
}
MyContainer* target = nullptr;
std::size_t pos = 0;
};
MyIterator begin(MyContainer& tgt) {
return MyIterator{&tgt, 0}
return MyIterator{&tgt};
}
MyIterator end(const MyContainer&) {
return MyIterator{nullptr, 0}
return {};
}
void foo() {