Skip to content

Commit bb5c6ba

Browse files
chore: Replace deprecated equalorlarger with move_equalorlarger (#770)
Updated the README C++ example code to use move_equalorlarger() since equalorlarger() is deprecated. Related issue: #653
1 parent 78b2817 commit bb5c6ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -913,7 +913,7 @@ int main() {
913913
const uint32_t manyvalues[] = {2, 3, 4, 7, 8};
914914
Roaring rogue(5, manyvalues);
915915
Roaring::const_iterator j = rogue.begin();
916-
j.equalorlarger(4); // *j == 4
916+
j.move_equalorlarger(4); // *j == 4
917917
return EXIT_SUCCESS;
918918
}
919919

0 commit comments

Comments
 (0)