From ffcf9b0b201f866405fe8b17003279d10c623885 Mon Sep 17 00:00:00 2001 From: Yunsong Wang Date: Wed, 15 Nov 2023 15:31:04 -0800 Subject: [PATCH] Remove unused type alias --- tests/static_map/shared_memory_test.cu | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/static_map/shared_memory_test.cu b/tests/static_map/shared_memory_test.cu index 444f1c7e7..1bc2d8ab7 100644 --- a/tests/static_map/shared_memory_test.cu +++ b/tests/static_map/shared_memory_test.cu @@ -74,9 +74,8 @@ TEMPLATE_TEST_CASE_SIG("Shared memory static map", (int64_t, int32_t), (int64_t, int64_t)) { - using MapType = cuco::static_map; - using DeviceViewType = typename MapType::device_view; - using DeviceViewIteratorType = typename DeviceViewType::iterator; + using MapType = cuco::static_map; + using DeviceViewType = typename MapType::device_view; constexpr std::size_t number_of_maps = 1000; constexpr std::size_t elements_in_map = 500;