Skip to content

Commit d0ebd0f

Browse files
committed
Fix decimal_fast32_t normalization in constructor
1 parent 5dec488 commit d0ebd0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/boost/decimal/decimal_fast32_t.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ constexpr decimal_fast32_t::decimal_fast32_t(T1 coeff, T2 exp, bool sign) noexce
413413
sign_ = sign;
414414

415415
// Normalize in the constructor, so we never have to worry about it again
416-
detail::normalize<decimal32_t>(min_coeff, exp, sign);
416+
detail::normalize<decimal_fast32_t>(min_coeff, exp, sign);
417417

418418
significand_ = static_cast<significand_type>(min_coeff);
419419

0 commit comments

Comments
 (0)