Skip to content

Commit 7e952a2

Browse files
committed
greater-equal
1 parent e90516e commit 7e952a2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

libcxx/include/__algorithm/radix_sort.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ __radix_sort(_RandomAccessIterator1 __first, _RandomAccessIterator1 __last, _Ran
323323
std::__radix_sort(__first, __last, __buffer, __identity{}, __low_byte_fn{});
324324
}
325325

326-
#endif // _LIBCPP_STD_VER > 14
326+
#endif // _LIBCPP_STD_VER >= 14
327327

328328
_LIBCPP_END_NAMESPACE_STD
329329

libcxx/include/__algorithm/stable_sort.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ constexpr unsigned __radix_sort_max_bound() {
216216

217217
return 1 << 16;
218218
}
219-
#endif // _LIBCPP_STD_VER > 17
219+
#endif // _LIBCPP_STD_VER >= 17
220220

221221
template <class _AlgPolicy, class _Compare, class _RandomAccessIterator>
222222
void __stable_sort(_RandomAccessIterator __first,
@@ -254,7 +254,7 @@ void __stable_sort(_RandomAccessIterator __first,
254254
return;
255255
}
256256
}
257-
#endif // _LIBCPP_STD_VER > 17
257+
#endif // _LIBCPP_STD_VER >= 17
258258

259259
typename iterator_traits<_RandomAccessIterator>::difference_type __l2 = __len / 2;
260260
_RandomAccessIterator __m = __first + __l2;

0 commit comments

Comments
 (0)