@@ -87,23 +87,23 @@ __partial_sum_max(_InputIterator __first, _InputIterator __last, _OutputIterator
8787
8888template <class _Value , class _Map , class _Radix >
8989struct __radix_sort_traits {
90- using image_type = decay_t <invoke_result_t <_Map, _Value> >;
91- static_assert (is_unsigned<image_type >::value, " " );
90+ using __image_type = decay_t <invoke_result_t <_Map, _Value> >;
91+ static_assert (is_unsigned<__image_type >::value, " " );
9292
93- using radix_type = decay_t <invoke_result_t <_Radix, image_type > >;
94- static_assert (is_integral<radix_type >::value, " " );
93+ using __radix_type = decay_t <invoke_result_t <_Radix, __image_type > >;
94+ static_assert (is_integral<__radix_type >::value, " " );
9595
96- constexpr static auto __radix_value_range = numeric_limits<radix_type >::max() + 1 ;
96+ constexpr static auto __radix_value_range = numeric_limits<__radix_type >::max() + 1 ;
9797 constexpr static auto __radix_size = std::__intlog2<uint64_t >(__radix_value_range);
98- constexpr static auto __radix_count = sizeof (image_type ) * CHAR_BIT / __radix_size;
98+ constexpr static auto __radix_count = sizeof (__image_type ) * CHAR_BIT / __radix_size;
9999};
100100
101101template <class _Value , class _Map >
102102struct __counting_sort_traits {
103- using image_type = decay_t <invoke_result_t <_Map, _Value> >;
104- static_assert (is_unsigned<image_type >::value, " " );
103+ using __image_type = decay_t <invoke_result_t <_Map, _Value> >;
104+ static_assert (is_unsigned<__image_type >::value, " " );
105105
106- constexpr static const auto __value_range = numeric_limits<image_type >::max() + 1 ;
106+ constexpr static const auto __value_range = numeric_limits<__image_type >::max() + 1 ;
107107 constexpr static auto __radix_size = std::__intlog2<uint64_t >(__value_range);
108108};
109109
0 commit comments