Skip to content

Commit

Permalink
Add type alias to unblock cudf build
Browse files Browse the repository at this point in the history
  • Loading branch information
PointKernel committed Dec 3, 2024
1 parent b8429d4 commit ae85e91
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions include/cuco/bucket_storage.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ class bucket_storage_ref : public detail::bucket_storage_base<T, BucketSize, Ext
using size_type = typename base_type::size_type; ///< Storage size type
using value_type = typename base_type::value_type; ///< Slot type
using bucket_type = typename base_type::bucket_type; ///< Slot bucket type
using window_type = bucket_type; ///< Slot bucket type

using base_type::capacity;
using base_type::num_buckets;
Expand Down Expand Up @@ -146,6 +147,7 @@ class bucket_storage : public detail::bucket_storage_base<T, BucketSize, Extent>
using size_type = typename base_type::size_type; ///< Storage size type
using value_type = typename base_type::value_type; ///< Slot type
using bucket_type = typename base_type::bucket_type; ///< Slot bucket type
using window_type = bucket_type; ///< Slot bucket type

using base_type::capacity;
using base_type::num_buckets;
Expand Down

0 comments on commit ae85e91

Please sign in to comment.