Fix clang tidy error

This commit is contained in:
jbajic 2023-03-29 15:00:18 +02:00
parent 3f5440fecb
commit 71a412ef96

View File

@ -2158,7 +2158,7 @@ class OptionalCursor : public Cursor {
// if successful, next Pull from this should not pull_input_
pull_input_ = false;
return true;
} else {
}
// failed to Pull from the merge_match cursor
if (pull_input_) {
// if we have just now pulled from the input
@ -2172,8 +2172,6 @@ class OptionalCursor : public Cursor {
// we have exhausted optional_cursor_ after 1 or more successful Pulls
// attempt next input_cursor_ pull
pull_input_ = true;
continue;
}
}
}