Skip to content

Commit

Permalink
one more try
Browse files Browse the repository at this point in the history
  • Loading branch information
burnpanck committed Sep 16, 2024
1 parent e003a58 commit 60c94da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/include/mp-units/bits/fixed_point.h
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ constexpr bool is_signed_v<double_width_int<T>> = double_width_int<T>::is_signed
template<typename T>
using make_signed_t = std::make_signed_t<T>;

#if defined(__cpp_lib_int_pow2) && __cpp_lib_int_pow2 >= 202002L
#if defined(__cpp_lib_int_pow2) && __cpp_lib_int_pow2 >= 202002L && false
template<std::size_t N>
using min_width_uint_t =
std::tuple_element_t<std::max<std::size_t>(4u, std::bit_width(N) + (std::has_single_bit(N) ? 0u : 1u)) - 4u,
Expand Down

0 comments on commit 60c94da

Please sign in to comment.