Skip to content

Commit c492a22

Browse files
committed
[libc++] Add missing _LIBCPP_NODEBUG on internal aliases
1 parent f764e71 commit c492a22

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

libcxx/include/__algorithm/radix_sort.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,10 +88,10 @@ __partial_sum_max(_InputIterator __first, _InputIterator __last, _OutputIterator
8888

8989
template <class _Value, class _Map, class _Radix>
9090
struct __radix_sort_traits {
91-
using __image_type = decay_t<typename __invoke_of<_Map, _Value>::type>;
91+
using __image_type _LIBCPP_NODEBUG = decay_t<typename __invoke_of<_Map, _Value>::type>;
9292
static_assert(is_unsigned<__image_type>::value);
9393

94-
using __radix_type = decay_t<typename __invoke_of<_Radix, __image_type>::type>;
94+
using __radix_type _LIBCPP_NODEBUG = decay_t<typename __invoke_of<_Radix, __image_type>::type>;
9595
static_assert(is_integral<__radix_type>::value);
9696

9797
static constexpr auto __radix_value_range = numeric_limits<__radix_type>::max() + 1;
@@ -101,7 +101,7 @@ struct __radix_sort_traits {
101101

102102
template <class _Value, class _Map>
103103
struct __counting_sort_traits {
104-
using __image_type = decay_t<typename __invoke_of<_Map, _Value>::type>;
104+
using __image_type _LIBCPP_NODEBUG = decay_t<typename __invoke_of<_Map, _Value>::type>;
105105
static_assert(is_unsigned<__image_type>::value);
106106

107107
static constexpr const auto __value_range = numeric_limits<__image_type>::max() + 1;

0 commit comments

Comments
 (0)