Skip to content

Commit

Permalink
Fix closure
Browse files Browse the repository at this point in the history
  • Loading branch information
mborland committed Oct 3, 2024
1 parent 757ecad commit a375984
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/boost/decimal/detail/cmath/atan.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,9 @@ constexpr auto atan_impl(T x) noexcept

if (fpc == FP_ZERO
#ifndef BOOST_DECIMAL_FAST_MATH
|| fpc == FP_NAN)
|| fpc == FP_NAN
#endif
)
{
result = x;
}
Expand Down

0 comments on commit a375984

Please sign in to comment.