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
{{ message }}
This repository was archived by the owner on Mar 12, 2021. It is now read-only.
I think there is mistake in value() member. It shifts counter by COUNTER_BIT_COUNT, but I believe you want to shift it by INDEX_BIT_COUNT
so instead of
return (counter << ANAX_ENTITY_ID_COUNTER_BIT_COUNT) | index;
it should be
return (counter << ANAX_ENTITY_ID_INDEX_BIT_COUNT) | index;
The text was updated successfully, but these errors were encountered: