File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
libcxx/include/__algorithm Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -302,7 +302,7 @@ _LIBCPP_HIDE_FROM_ABI constexpr auto __shift_to_unsigned(_Ip __n) {
302302}
303303
304304template <size_t _Size>
305- struct __unsigned_integer_of_size {} ;
305+ struct __unsigned_integer_of_size ;
306306
307307template <>
308308struct __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
327328template <>
328329struct __unsigned_integer_of_size <16 > {
329- # if _LIBCPP_HAS_INT128
330330 using type = __int128;
331- # endif
332331};
332+ # endif
333333
334334template <size_t _Size>
335335using __unsigned_integer_of_size_t _LIBCPP_NODEBUG = typename __unsigned_integer_of_size<_Size>::type;
You can’t perform that action at this time.
0 commit comments