Skip to content

Commit

Permalink
The very last two stupid bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
PointKernel committed Oct 9, 2023
1 parent fbb05c9 commit ca19eab
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,6 @@ class open_addressing_ref_impl {
case detail::equal_result::EQUAL:
return window_probing_results{detail::equal_result::EQUAL, i};
default: {
continue;
if (cuco::detail::bitwise_compare(this->extract_key(window_slots[i]),
this->erased_key_sentinel())) {
return window_probing_results{detail::equal_result::ERASED, i};
Expand Down Expand Up @@ -455,7 +454,6 @@ class open_addressing_ref_impl {
case detail::equal_result::EQUAL:
return window_probing_results{detail::equal_result::EQUAL, i};
default: {
continue;
if (cuco::detail::bitwise_compare(this->extract_key(window_slots[i]),
this->erased_key_sentinel())) {
return window_probing_results{detail::equal_result::ERASED, i};
Expand Down

0 comments on commit ca19eab

Please sign in to comment.