Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Daniel Jünger <[email protected]>
  • Loading branch information
PointKernel and sleeepyjack authored Aug 27, 2024
1 parent 942ef5f commit 7e541b8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
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 @@ -142,7 +142,7 @@ __host__ __device__ constexpr static_map_ref<Key,
static_map_ref<Key, T, Scope, KeyEqual, ProbingScheme, StorageRef, Operators...>::hash_function()
const noexcept
{
return this->impl_.hash_function();
return impl_.hash_function();
}

template <typename Key,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ __host__ __device__ constexpr static_multiset_ref<Key,
static_multiset_ref<Key, Scope, KeyEqual, ProbingScheme, StorageRef, Operators...>::hash_function()
const noexcept
{
return this->impl_.hash_function();
return impl_.hash_function();
}

template <typename Key,
Expand Down
2 changes: 1 addition & 1 deletion include/cuco/detail/static_set/static_set_ref.inl
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ __host__ __device__ constexpr static_set_ref<Key,
static_set_ref<Key, Scope, KeyEqual, ProbingScheme, StorageRef, Operators...>::hash_function()
const noexcept
{
return this->impl_.hash_function();
return impl_.hash_function();
}

template <typename Key,
Expand Down

0 comments on commit 7e541b8

Please sign in to comment.