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;
306306
307307template <>
308308struct __unsigned_integer_of_size <1 > {
309- using type = uint8_t ;
309+ using type _LIBCPP_NODEBUG = uint8_t ;
310310};
311311
312312template <>
313313struct __unsigned_integer_of_size <2 > {
314- using type = uint16_t ;
314+ using type _LIBCPP_NODEBUG = uint16_t ;
315315};
316316
317317template <>
318318struct __unsigned_integer_of_size <4 > {
319- using type = uint32_t ;
319+ using type _LIBCPP_NODEBUG = uint32_t ;
320320};
321321
322322template <>
323323struct __unsigned_integer_of_size <8 > {
324- using type = uint64_t ;
324+ using type _LIBCPP_NODEBUG = uint64_t ;
325325};
326326
327327# if _LIBCPP_HAS_INT128
328328template <>
329329struct __unsigned_integer_of_size <16 > {
330- using type = __int128;
330+ using type _LIBCPP_NODEBUG = __int128;
331331};
332332# endif
333333
You can’t perform that action at this time.
0 commit comments