Update src/query/v2/multiframe.hpp

Co-authored-by: Kostas Kyrimis  <kostaskyrim@gmail.com>
This commit is contained in:
Jeremy B 2022-12-01 14:52:30 +01:00 committed by GitHub
parent 6c441b80ec
commit 452722f4f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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