From 60c94da658cd6f16074f3c78e4de979c0afd3cd7 Mon Sep 17 00:00:00 2001 From: Yves Delley Date: Mon, 16 Sep 2024 17:08:38 +0200 Subject: [PATCH] one more try --- src/core/include/mp-units/bits/fixed_point.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/include/mp-units/bits/fixed_point.h b/src/core/include/mp-units/bits/fixed_point.h index 66071dd1d..1a009c4f2 100644 --- a/src/core/include/mp-units/bits/fixed_point.h +++ b/src/core/include/mp-units/bits/fixed_point.h @@ -237,7 +237,7 @@ constexpr bool is_signed_v> = double_width_int::is_signed template using make_signed_t = std::make_signed_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 using min_width_uint_t = std::tuple_element_t(4u, std::bit_width(N) + (std::has_single_bit(N) ? 0u : 1u)) - 4u,