Skip to content

Commit

Permalink
support -fno-exceptions
Browse files Browse the repository at this point in the history
  • Loading branch information
izvolov committed Aug 18, 2024
1 parent 9eb272b commit c401e86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libcxx/include/__algorithm/radix_sort.h
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ constexpr _Integer __intlog2(_Integer __integer) {
static_assert(is_integral<_Integer>::value, "Must be an integral type");

return __integer > 0 ? __intlog2_impl(__integer)
: throw domain_error("The binary logarithm is not defined on non-positive numbers");
: __throw_domain_error("The binary logarithm is not defined on non-positive numbers");
}

template <typename _InputIterator, typename _OutputIterator>
Expand Down

0 comments on commit c401e86

Please sign in to comment.