Skip to content

Commit 3449843

Browse files
authored
Fix a typo in the multiset retrieve device function signature.
We always pass atomic counter by pointer instead of by reference. This unblocks the mixed join migration with multiset.
1 parent 7981b51 commit 3449843

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/cuco/detail/static_multiset/static_multiset_ref.inl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -599,7 +599,7 @@ class operator_impl<
599599
InputProbeIt input_probe_end,
600600
OutputProbeIt output_probe,
601601
OutputMatchIt output_match,
602-
AtomicCounter& atomic_counter) const
602+
AtomicCounter* atomic_counter) const
603603
{
604604
auto const& ref_ = static_cast<ref_type const&>(*this);
605605
ref_.impl_.template retrieve<BlockSize>(
@@ -648,7 +648,7 @@ class operator_impl<
648648
InputProbeIt input_probe_end,
649649
OutputProbeIt output_probe,
650650
OutputMatchIt output_match,
651-
AtomicCounter& atomic_counter) const
651+
AtomicCounter* atomic_counter) const
652652
{
653653
auto const& ref_ = static_cast<ref_type const&>(*this);
654654
ref_.impl_.template retrieve_outer<BlockSize>(

0 commit comments

Comments
 (0)