Skip to content

Commit fe5f47c

Browse files
committed
Minor cleanups
1 parent 7428efe commit fe5f47c

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

include/cuco/detail/static_map/static_map_ref.inl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1571,7 +1571,7 @@ class operator_impl<
15711571
* @param atomic_counter Counter that is used to determine the next free position in the output
15721572
* sequences
15731573
*/
1574-
template <int32_t BlockSize,
1574+
template <int BlockSize,
15751575
class InputProbeIt,
15761576
class StencilIt,
15771577
class Predicate,

include/cuco/detail/static_multimap/static_multimap_ref.inl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -882,7 +882,7 @@ class operator_impl<
882882
* @param atomic_counter Counter that is used to determine the next free position in the output
883883
* sequences
884884
*/
885-
template <int32_t BlockSize,
885+
template <int BlockSize,
886886
class InputProbeIt,
887887
class StencilIt,
888888
class Predicate,

include/cuco/detail/static_multiset/static_multiset_ref.inl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -692,7 +692,7 @@ class operator_impl<
692692
* @param atomic_counter Counter that is used to determine the next free position in the output
693693
* sequences
694694
*/
695-
template <int32_t BlockSize,
695+
template <int BlockSize,
696696
class InputProbeIt,
697697
class StencilIt,
698698
class Predicate,

include/cuco/detail/static_set/static_set_ref.inl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -881,7 +881,7 @@ class operator_impl<op::retrieve_tag,
881881
* @param atomic_counter Counter that is used to determine the next free position in the output
882882
* sequences
883883
*/
884-
template <int32_t BlockSize,
884+
template <int BlockSize,
885885
class InputProbeIt,
886886
class StencilIt,
887887
class Predicate,

include/cuco/operator.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ struct find_tag {
298298
* API Signatures:
299299
* ```cpp
300300
* // Basic retrieve
301-
* template <int32_t BlockSize,
301+
* template <int BlockSize,
302302
* class InputProbeIt,
303303
* class OutputProbeIt,
304304
* class OutputMatchIt,
@@ -311,7 +311,7 @@ struct find_tag {
311311
* AtomicCounter* atomic_counter) const
312312
*
313313
* // Conditional retrieve with predicate
314-
* template <int32_t BlockSize,
314+
* template <int BlockSize,
315315
* class InputProbeIt,
316316
* class StencilIt,
317317
* class Predicate,

0 commit comments

Comments
 (0)