Skip to content

Commit

Permalink
Revert if constexpr change
Browse files Browse the repository at this point in the history
  • Loading branch information
mborland committed Jul 31, 2024
1 parent 7bd6f95 commit c86e744
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/boost/math/special_functions/gamma.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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<T>::digits)
if (std::numeric_limits<T>::digits)
{
boost::math::gamma_p(static_cast<T>(400), static_cast<T>(400), Policy());
}
Expand Down

0 comments on commit c86e744

Please sign in to comment.