Skip to content

Commit dd13efe

Browse files
committed
uglify-macro
1 parent c76488a commit dd13efe

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

libcxx/include/__algorithm/radix_sort.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ _LIBCPP_BEGIN_NAMESPACE_STD
4949

5050
inline _LIBCPP_HIDE_FROM_ABI void __variadic_expansion_dummy(initializer_list<int>) {}
5151

52-
# define EXPAND_VARIADIC(expression) std::__variadic_expansion_dummy({(expression, 0)...})
52+
# define _EXPAND_VARIADIC(expression) std::__variadic_expansion_dummy({(expression, 0)...})
5353

5454
template <typename _Iterator>
5555
_LIBCPP_HIDE_FROM_ABI constexpr auto __move_assign_please(_Iterator __i)
@@ -201,10 +201,10 @@ _LIBCPP_HIDE_FROM_ABI bool __collect_impl(
201201
__is_sorted &= (__current >= __previous);
202202
__previous = __current;
203203

204-
EXPAND_VARIADIC(++__counters[_Radices][std::__nth_radix(_Radices, __radix)(__current)]);
204+
_EXPAND_VARIADIC(++__counters[_Radices][std::__nth_radix(_Radices, __radix)(__current)]);
205205
});
206206

207-
EXPAND_VARIADIC(
207+
_EXPAND_VARIADIC(
208208
__maximums[_Radices] =
209209
std::__partial_sum_max(__counters[_Radices], __counters[_Radices] + __radix_value_range, __counters[_Radices])
210210
.second);
@@ -395,7 +395,7 @@ __radix_sort(_RandomAccessIterator1, _RandomAccessIterator1, _RandomAccessIterat
395395
return false;
396396
}
397397

398-
# undef EXPAND_VARIADIC
398+
# undef _EXPAND_VARIADIC
399399

400400
#else // _LIBCPP_STD_VER > 14
401401

0 commit comments

Comments
 (0)