Skip to content

Commit 807d73b

Browse files
committed
metafunc
1 parent 5e32fd0 commit 807d73b

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
@@ -302,7 +302,7 @@ _LIBCPP_HIDE_FROM_ABI constexpr auto __shift_to_unsigned(_Ip __n) {
302302
}
303303

304304
template <size_t _Size>
305-
struct __unsigned_integer_of_size {};
305+
struct __unsigned_integer_of_size;
306306

307307
template <>
308308
struct __unsigned_integer_of_size<1> {
@@ -324,12 +324,12 @@ struct __unsigned_integer_of_size<8> {
324324
using type = uint64_t;
325325
};
326326

327+
# if _LIBCPP_HAS_INT128
327328
template <>
328329
struct __unsigned_integer_of_size<16> {
329-
# if _LIBCPP_HAS_INT128
330330
using type = __int128;
331-
# endif
332331
};
332+
# endif
333333

334334
template <size_t _Size>
335335
using __unsigned_integer_of_size_t _LIBCPP_NODEBUG = typename __unsigned_integer_of_size<_Size>::type;

0 commit comments

Comments
 (0)