@@ -94,7 +94,7 @@ template <class... _What>
94
94
struct _ERROR : __merror_base
95
95
{
96
96
template <class ...>
97
- using __call _LIBCUDACXX_NODEBUG_TYPE = _ERROR;
97
+ using __call _CCCL_NODEBUG_ALIAS = _ERROR;
98
98
99
99
_ERROR operator +();
100
100
@@ -138,14 +138,14 @@ template <bool _Error>
138
138
struct __type_self_or_error_with_
139
139
{
140
140
template <class _Ty , class ... _With>
141
- using __call _LIBCUDACXX_NODEBUG_TYPE = _Ty;
141
+ using __call _CCCL_NODEBUG_ALIAS = _Ty;
142
142
};
143
143
144
144
template <>
145
145
struct __type_self_or_error_with_ <true >
146
146
{
147
147
template <class _Ty , class ... _With>
148
- using __call _LIBCUDACXX_NODEBUG_TYPE = decltype(__declval<_Ty&>().with(__declval<_ERROR<_With...>&>()));
148
+ using __call _CCCL_NODEBUG_ALIAS = decltype(__declval<_Ty&>().with(__declval<_ERROR<_With...>&>()));
149
149
};
150
150
151
151
template <class _Ty , class ... _With>
@@ -162,7 +162,7 @@ struct __type_try__<false>
162
162
using __call_q = _Fn<_Ts...>;
163
163
164
164
template <class _Fn , class ... _Ts>
165
- using __call _LIBCUDACXX_NODEBUG_TYPE = typename _Fn::template __call<_Ts...>;
165
+ using __call _CCCL_NODEBUG_ALIAS = typename _Fn::template __call<_Ts...>;
166
166
};
167
167
168
168
template <>
@@ -172,7 +172,7 @@ struct __type_try__<true>
172
172
using __call_q = __type_find_error<_Ts...>;
173
173
174
174
template <class _Fn , class ... _Ts>
175
- using __call _LIBCUDACXX_NODEBUG_TYPE = __type_find_error<_Fn, _Ts...>;
175
+ using __call _CCCL_NODEBUG_ALIAS = __type_find_error<_Fn, _Ts...>;
176
176
};
177
177
178
178
template <class _Fn , class ... _Ts>
@@ -187,7 +187,7 @@ template <class _Fn>
187
187
struct __type_try
188
188
{
189
189
template <class ... _Ts>
190
- using __call _LIBCUDACXX_NODEBUG_TYPE = __type_try_call<_Fn, _Ts...>;
190
+ using __call _CCCL_NODEBUG_ALIAS = __type_try_call<_Fn, _Ts...>;
191
191
};
192
192
193
193
template <template <class ...> class _Fn , class ... _Default>
@@ -198,7 +198,7 @@ template <template <class...> class _Fn>
198
198
struct __type_try_quote <_Fn>
199
199
{
200
200
template <class ... _Ts>
201
- using __call _LIBCUDACXX_NODEBUG_TYPE =
201
+ using __call _CCCL_NODEBUG_ALIAS =
202
202
typename __type_try__<__type_contains_error<_Ts...>>::template __call_q<_Fn, _Ts...>;
203
203
};
204
204
@@ -207,7 +207,7 @@ template <template <class...> class _Fn, class _Default>
207
207
struct __type_try_quote <_Fn, _Default>
208
208
{
209
209
template <class ... _Ts>
210
- using __call _LIBCUDACXX_NODEBUG_TYPE =
210
+ using __call _CCCL_NODEBUG_ALIAS =
211
211
typename _CUDA_VSTD::_If<__type_valid_v<_Fn, _Ts...>, //
212
212
__type_try_quote<_Fn>,
213
213
_CUDA_VSTD::__type_always<_Default>>::template __call<_Ts...>;
@@ -230,20 +230,20 @@ template <template <class...> class _Second, template <class...> class _First>
230
230
struct __type_compose_quote
231
231
{
232
232
template <class ... _Ts>
233
- using __call _LIBCUDACXX_NODEBUG_TYPE = _Second<_First<_Ts...>>;
233
+ using __call _CCCL_NODEBUG_ALIAS = _Second<_First<_Ts...>>;
234
234
};
235
235
236
236
struct __type_count
237
237
{
238
238
template <class ... _Ts>
239
- using __call _LIBCUDACXX_NODEBUG_TYPE = _CUDA_VSTD::integral_constant<size_t , sizeof ...(_Ts)>;
239
+ using __call _CCCL_NODEBUG_ALIAS = _CUDA_VSTD::integral_constant<size_t , sizeof ...(_Ts)>;
240
240
};
241
241
242
242
template <template <class ...> class _Continuation >
243
243
struct __type_concat_into_quote
244
244
{
245
245
template <class ... _Args>
246
- using __call _LIBCUDACXX_NODEBUG_TYPE =
246
+ using __call _CCCL_NODEBUG_ALIAS =
247
247
_CUDA_VSTD::__type_call1<_CUDA_VSTD::__type_concat<_CUDA_VSTD::__as_type_list<_Args>...>,
248
248
_CUDA_VSTD::__type_quote<_Continuation>>;
249
249
};
@@ -252,7 +252,7 @@ template <class _Ty>
252
252
struct __type_self_or
253
253
{
254
254
template <class _Uy = _Ty>
255
- using __call _LIBCUDACXX_NODEBUG_TYPE = _Uy;
255
+ using __call _CCCL_NODEBUG_ALIAS = _Uy;
256
256
};
257
257
} // namespace cuda::experimental::__async
258
258
0 commit comments