You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Roaring64Map m1;
auto it = m1.begin();
// ...
Roaring64Map m2;
it = m2.begin();
This leads to trouble, because Roaring64MapSetBitForwardIterator's copy assignment does not copy the map reference. So if you then use it.move(<value>), map_iter is going to point into the wrong map (m1).
The text was updated successfully, but these errors were encountered:
This leads to trouble, because
Roaring64MapSetBitForwardIterator
's copy assignment does not copy the map reference. So if you then useit.move(<value>)
,map_iter
is going to point into the wrong map (m1
).The text was updated successfully, but these errors were encountered: