@@ -147,7 +147,7 @@ _CCCL_DEVICE _CCCL_FORCEINLINE void prefetch_tile(const T* addr, int tile_size)
147147// TODO(miscco): we should probably constrain It to not be a contiguous iterator in C++17 (and change the overload
148148// above to accept any contiguous iterator)
149149// overload for any iterator that is not a pointer, do nothing
150- template <int , typename It, ::cuda::std::__enable_if_t <!::cuda::std::is_pointer<It>::value, int > = 0 >
150+ template <int , typename It, ::cuda::std::enable_if_t <!::cuda::std::is_pointer<It>::value, int > = 0 >
151151_CCCL_DEVICE _CCCL_FORCEINLINE void prefetch_tile (It, int )
152152{}
153153
@@ -232,20 +232,20 @@ _CCCL_DEVICE _CCCL_FORCEINLINE auto poor_apply(F&& f, Tuple&& t)
232232 -> decltype(poor_apply_impl(
233233 ::cuda::std::forward<F>(f),
234234 ::cuda::std::forward<Tuple>(t),
235- ::cuda::std::make_index_sequence<::cuda::std::tuple_size<::cuda::std::__libcpp_remove_reference_t <Tuple>>::value>{}))
235+ ::cuda::std::make_index_sequence<::cuda::std::tuple_size<::cuda::std::remove_reference_t <Tuple>>::value>{}))
236236{
237237 return poor_apply_impl (
238238 ::cuda::std::forward<F>(f),
239239 ::cuda::std::forward<Tuple>(t),
240- ::cuda::std::make_index_sequence<::cuda::std::tuple_size<::cuda::std::__libcpp_remove_reference_t <Tuple>>::value>{});
240+ ::cuda::std::make_index_sequence<::cuda::std::tuple_size<::cuda::std::remove_reference_t <Tuple>>::value>{});
241241}
242242
243243// mult must be a power of 2
244244template <typename Integral>
245245_CCCL_HOST_DEVICE _CCCL_FORCEINLINE constexpr auto round_up_to_po2_multiple (Integral x, Integral mult) -> Integral
246246{
247247#if _CCCL_STD_VER > 2011
248- _CCCL_ASSERT (::cuda::std::has_single_bit (static_cast <::cuda::std::__make_unsigned_t <Integral>>(mult)), " " );
248+ _CCCL_ASSERT (::cuda::std::has_single_bit (static_cast <::cuda::std::make_unsigned_t <Integral>>(mult)), " " );
249249#endif // _CCCL_STD_VER > 2011
250250 return (x + mult - 1 ) & ~(mult - 1 );
251251}
@@ -544,15 +544,15 @@ using needs_aligned_ptr_t =
544544 >;
545545
546546#ifdef _CUB_HAS_TRANSFORM_UBLKCP
547- template <Algorithm Alg, typename It, ::cuda::std::__enable_if_t <needs_aligned_ptr_t <Alg>::value, int > = 0 >
547+ template <Algorithm Alg, typename It, ::cuda::std::enable_if_t <needs_aligned_ptr_t <Alg>::value, int > = 0 >
548548_CCCL_DEVICE _CCCL_FORCEINLINE auto select_kernel_arg (
549549 ::cuda::std::integral_constant<Algorithm, Alg>, kernel_arg<It>&& arg) -> aligned_base_ptr<value_t<It>>&&
550550{
551551 return ::cuda::std::move (arg.aligned_ptr );
552552}
553553#endif // _CUB_HAS_TRANSFORM_UBLKCP
554554
555- template <Algorithm Alg, typename It, ::cuda::std::__enable_if_t <!needs_aligned_ptr_t <Alg>::value, int > = 0 >
555+ template <Algorithm Alg, typename It, ::cuda::std::enable_if_t <!needs_aligned_ptr_t <Alg>::value, int > = 0 >
556556_CCCL_DEVICE _CCCL_FORCEINLINE auto
557557select_kernel_arg (::cuda::std::integral_constant<Algorithm, Alg>, kernel_arg<It>&& arg) -> It&&
558558{
0 commit comments