Skip to content

Commit

Permalink
Fix leftovers
Browse files Browse the repository at this point in the history
  • Loading branch information
PointKernel committed Aug 26, 2024
1 parent 3f03017 commit 309061d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/cuco/detail/static_multimap/static_multimap.inl
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ template <class Key,
template <typename InputIt>
static_multimap<Key, T, Extent, Scope, KeyEqual, ProbingScheme, Allocator, Storage>::size_type
static_multimap<Key, T, Extent, Scope, KeyEqual, ProbingScheme, Allocator, Storage>::count(
InputIt first, InputIt last, cuda::stream_ref stream) const noexcept
InputIt first, InputIt last, cuda::stream_ref stream) const
{
return impl_->count(first, last, ref(op::count), stream);
}
Expand Down
2 changes: 1 addition & 1 deletion include/cuco/detail/static_multiset/static_multiset.inl
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ template <class Key,
template <typename InputIt>
static_multiset<Key, Extent, Scope, KeyEqual, ProbingScheme, Allocator, Storage>::size_type
static_multiset<Key, Extent, Scope, KeyEqual, ProbingScheme, Allocator, Storage>::count(
InputIt first, InputIt last, cuda::stream_ref stream) const noexcept
InputIt first, InputIt last, cuda::stream_ref stream) const
{
return impl_->count(first, last, ref(op::count), stream);
}
Expand Down

0 comments on commit 309061d

Please sign in to comment.