Rmove unneeded "this"

This commit is contained in:
jeremy 2022-12-01 15:04:51 +01:00
parent d18d4f198e
commit 8eec8399a3

View File

@ -118,7 +118,7 @@ class ValidFramesReader {
Iterator &operator++() {
do {
ptr_++;
} while (*this != iterator_wrapper_->end() && !this->ptr_->IsValid());
} while (*this != iterator_wrapper_->end() && !ptr_->IsValid());
return *this;
}
@ -165,7 +165,7 @@ class ValidFramesModifier {
Iterator &operator++() {
do {
ptr_++;
} while (*this != iterator_wrapper_.end() && ptr_->IsValid());
} while (*this != iterator_wrapper_->end() && ptr_->IsValid());
return *this;
}
@ -212,7 +212,7 @@ class ValidFramesConsumer {
Iterator &operator++() {
do {
ptr_++;
} while (*this != iterator_wrapper_->end() && !this->ptr_->IsValid());
} while (*this != iterator_wrapper_->end() && !ptr_->IsValid());
return *this;
}