Skip to content

Commit

Permalink
Move the sentinel
Browse files Browse the repository at this point in the history
  • Loading branch information
PointKernel committed Sep 26, 2023
1 parent 8c8c3c1 commit 2e7658c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/cuco/detail/static_map/static_map_ref.inl
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ __host__ __device__ constexpr static_map_ref<Key,
other) noexcept
: impl_{std::move(other.impl_)},
predicate_{std::move(other.predicate_)},
empty_value_sentinel_{other.empty_value_sentinel_}
empty_value_sentinel_{std::move(other.empty_value_sentinel_)}
{
}

Expand Down

0 comments on commit 2e7658c

Please sign in to comment.