Rmove unneeded "this"
This commit is contained in:
parent
d18d4f198e
commit
8eec8399a3
@ -118,7 +118,7 @@ class ValidFramesReader {
|
|||||||
Iterator &operator++() {
|
Iterator &operator++() {
|
||||||
do {
|
do {
|
||||||
ptr_++;
|
ptr_++;
|
||||||
} while (*this != iterator_wrapper_->end() && !this->ptr_->IsValid());
|
} while (*this != iterator_wrapper_->end() && !ptr_->IsValid());
|
||||||
|
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
@ -165,7 +165,7 @@ class ValidFramesModifier {
|
|||||||
Iterator &operator++() {
|
Iterator &operator++() {
|
||||||
do {
|
do {
|
||||||
ptr_++;
|
ptr_++;
|
||||||
} while (*this != iterator_wrapper_.end() && ptr_->IsValid());
|
} while (*this != iterator_wrapper_->end() && ptr_->IsValid());
|
||||||
|
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
@ -212,7 +212,7 @@ class ValidFramesConsumer {
|
|||||||
Iterator &operator++() {
|
Iterator &operator++() {
|
||||||
do {
|
do {
|
||||||
ptr_++;
|
ptr_++;
|
||||||
} while (*this != iterator_wrapper_->end() && !this->ptr_->IsValid());
|
} while (*this != iterator_wrapper_->end() && !ptr_->IsValid());
|
||||||
|
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user