From 708ec8cbd09321c3a03b93529aa1315c5db66a9d Mon Sep 17 00:00:00 2001 From: Rinzii Date: Mon, 1 Apr 2024 23:56:28 -0400 Subject: [PATCH] Fix erroneous brackets --- include/ccmath/math/fmanip/impl/scalbn_ldouble_impl.hpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/include/ccmath/math/fmanip/impl/scalbn_ldouble_impl.hpp b/include/ccmath/math/fmanip/impl/scalbn_ldouble_impl.hpp index 59ba8011..02c1902b 100644 --- a/include/ccmath/math/fmanip/impl/scalbn_ldouble_impl.hpp +++ b/include/ccmath/math/fmanip/impl/scalbn_ldouble_impl.hpp @@ -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 { @@ -40,6 +39,6 @@ namespace ccm::internal return 0; } #endif - } // namespace impl -} // namespace + } // namespace impl + } // namespace } // namespace ccm::internal