Skip to content

Commit 4077d33

Browse files
committed
no-debug
1 parent 807d73b commit 4077d33

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

libcxx/include/__algorithm/radix_sort.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -306,28 +306,28 @@ struct __unsigned_integer_of_size;
306306

307307
template <>
308308
struct __unsigned_integer_of_size<1> {
309-
using type = uint8_t;
309+
using type _LIBCPP_NODEBUG = uint8_t;
310310
};
311311

312312
template <>
313313
struct __unsigned_integer_of_size<2> {
314-
using type = uint16_t;
314+
using type _LIBCPP_NODEBUG = uint16_t;
315315
};
316316

317317
template <>
318318
struct __unsigned_integer_of_size<4> {
319-
using type = uint32_t;
319+
using type _LIBCPP_NODEBUG = uint32_t;
320320
};
321321

322322
template <>
323323
struct __unsigned_integer_of_size<8> {
324-
using type = uint64_t;
324+
using type _LIBCPP_NODEBUG = uint64_t;
325325
};
326326

327327
# if _LIBCPP_HAS_INT128
328328
template <>
329329
struct __unsigned_integer_of_size<16> {
330-
using type = __int128;
330+
using type _LIBCPP_NODEBUG = __int128;
331331
};
332332
# endif
333333

0 commit comments

Comments
 (0)