File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
libcxx/include/__algorithm Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -306,28 +306,28 @@ struct __unsigned_integer_of_size;
306
306
307
307
template <>
308
308
struct __unsigned_integer_of_size <1 > {
309
- using type = uint8_t ;
309
+ using type _LIBCPP_NODEBUG = uint8_t ;
310
310
};
311
311
312
312
template <>
313
313
struct __unsigned_integer_of_size <2 > {
314
- using type = uint16_t ;
314
+ using type _LIBCPP_NODEBUG = uint16_t ;
315
315
};
316
316
317
317
template <>
318
318
struct __unsigned_integer_of_size <4 > {
319
- using type = uint32_t ;
319
+ using type _LIBCPP_NODEBUG = uint32_t ;
320
320
};
321
321
322
322
template <>
323
323
struct __unsigned_integer_of_size <8 > {
324
- using type = uint64_t ;
324
+ using type _LIBCPP_NODEBUG = uint64_t ;
325
325
};
326
326
327
327
# if _LIBCPP_HAS_INT128
328
328
template <>
329
329
struct __unsigned_integer_of_size <16 > {
330
- using type = __int128;
330
+ using type _LIBCPP_NODEBUG = __int128;
331
331
};
332
332
# endif
333
333
You can’t perform that action at this time.
0 commit comments