From 95f338d233e1365fb3841439e39235ae0ca7ca7e Mon Sep 17 00:00:00 2001 From: Yunsong Wang Date: Wed, 4 Dec 2024 10:05:47 -0800 Subject: [PATCH] Add type alias to unblock cudf build (#649) This PR adds window-type aliases to avoid cudf build failures uncovered by https://github.com/rapidsai/cudf/pull/17498. To be reverted once cudf is migrated to use the bucket storage. --- include/cuco/bucket_storage.cuh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/cuco/bucket_storage.cuh b/include/cuco/bucket_storage.cuh index d5005ea89..eb16c8313 100644 --- a/include/cuco/bucket_storage.cuh +++ b/include/cuco/bucket_storage.cuh @@ -56,6 +56,7 @@ class bucket_storage_ref : public detail::bucket_storage_base 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;