From c86e74424dea51d6ed677ecbedf0dbd46eface4c Mon Sep 17 00:00:00 2001 From: Matt Borland Date: Tue, 30 Jul 2024 17:20:49 -0400 Subject: [PATCH] Revert if constexpr change --- include/boost/math/special_functions/gamma.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/math/special_functions/gamma.hpp b/include/boost/math/special_functions/gamma.hpp index af0599c88..b1beeb766 100644 --- a/include/boost/math/special_functions/gamma.hpp +++ b/include/boost/math/special_functions/gamma.hpp @@ -1913,7 +1913,7 @@ struct igamma_initializer // our initialization code here as the precision presumably // varies at runtime, and will not have been set yet. Plus the // code requiring initialization isn't called when digits == 0. - BOOST_MATH_IF_CONSTEXPR (std::numeric_limits::digits) + if (std::numeric_limits::digits) { boost::math::gamma_p(static_cast(400), static_cast(400), Policy()); }