We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb39d4b commit c44f4beCopy full SHA for c44f4be
src/common/lang/lower_bound.h
@@ -106,7 +106,7 @@ class BinaryIterator
106
data_ += (item_num_ * n);
107
return *this;
108
}
109
- BinaryIterator &operator-=(int n) { return this->operator+(-n); }
+ BinaryIterator &operator-=(int n) { return this->operator+=(-n); }
110
BinaryIterator &operator++() { return this->operator+=(1); }
111
BinaryIterator operator++(int)
112
{
0 commit comments