Skip to content

Commit c86e744

Browse files
committed
Revert if constexpr change
1 parent 7bd6f95 commit c86e744

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • include/boost/math/special_functions

include/boost/math/special_functions/gamma.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1913,7 +1913,7 @@ struct igamma_initializer
19131913
// our initialization code here as the precision presumably
19141914
// varies at runtime, and will not have been set yet. Plus the
19151915
// code requiring initialization isn't called when digits == 0.
1916-
BOOST_MATH_IF_CONSTEXPR (std::numeric_limits<T>::digits)
1916+
if (std::numeric_limits<T>::digits)
19171917
{
19181918
boost::math::gamma_p(static_cast<T>(400), static_cast<T>(400), Policy());
19191919
}

0 commit comments

Comments
 (0)