Skip to content

Commit ae85e91

Browse files
committed
Add type alias to unblock cudf build
1 parent b8429d4 commit ae85e91

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

include/cuco/bucket_storage.cuh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ class bucket_storage_ref : public detail::bucket_storage_base<T, BucketSize, Ext
5656
using size_type = typename base_type::size_type; ///< Storage size type
5757
using value_type = typename base_type::value_type; ///< Slot type
5858
using bucket_type = typename base_type::bucket_type; ///< Slot bucket type
59+
using window_type = bucket_type; ///< Slot bucket type
5960

6061
using base_type::capacity;
6162
using base_type::num_buckets;
@@ -146,6 +147,7 @@ class bucket_storage : public detail::bucket_storage_base<T, BucketSize, Extent>
146147
using size_type = typename base_type::size_type; ///< Storage size type
147148
using value_type = typename base_type::value_type; ///< Slot type
148149
using bucket_type = typename base_type::bucket_type; ///< Slot bucket type
150+
using window_type = bucket_type; ///< Slot bucket type
149151

150152
using base_type::capacity;
151153
using base_type::num_buckets;

0 commit comments

Comments
 (0)