Skip to content

Commit

Permalink
Fix erroneous brackets
Browse files Browse the repository at this point in the history
  • Loading branch information
Rinzii committed Apr 2, 2024
1 parent 8d368fe commit 708ec8c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions include/ccmath/math/fmanip/impl/scalbn_ldouble_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ namespace ccm::internal
{
return ccm::internal::impl::scalbn_double_impl(arg, exp);
}
}
#elif (LDBL_MANT_DIG == 64 || LDBL_MANT_DIG == 113) && LDBL_MAX_EXP == 16384
inline constexpr long double scalbn_ldouble_impl(long double arg, int exp) noexcept
{
Expand All @@ -40,6 +39,6 @@ namespace ccm::internal
return 0;
}
#endif
} // namespace impl
} // namespace
} // namespace impl
} // namespace
} // namespace ccm::internal

0 comments on commit 708ec8c

Please sign in to comment.