Skip to content

Commit

Permalink
Fix sentinel variables usage in commit 76aedb2
Browse files Browse the repository at this point in the history
  • Loading branch information
m3g4d1v3r committed May 26, 2022
1 parent b9142ce commit 6e301e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/cuco/static_multimap.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -680,7 +680,7 @@ class static_multimap {
std::size_t capacity,
sentinel::empty_key<Key> empty_key_sentinel,
sentinel::empty_value<Value> empty_value_sentinel) noexcept
: view_base_type{slots, capacity, empty_key_sentinel.value, empty_value_sentinel.value}
: view_base_type{slots, capacity, empty_key_sentinel, empty_value_sentinel}
{
}

Expand Down Expand Up @@ -731,7 +731,7 @@ class static_multimap {
std::size_t capacity,
sentinel::empty_key<Key> empty_key_sentinel,
sentinel::empty_value<Value> empty_value_sentinel) noexcept
: view_base_type{slots, capacity, empty_key_sentinel.value, empty_value_sentinel.value}
: view_base_type{slots, capacity, empty_key_sentinel, empty_value_sentinel}
{
}

Expand Down

0 comments on commit 6e301e4

Please sign in to comment.