improve packing of Number

This commit is contained in:
Valentin Balaschenko
2026-01-22 15:20:41 +00:00
parent 68fb4e7ad6
commit 7c918d8122

View File

@@ -524,7 +524,7 @@ inline constexpr Number::Number(
internalrep mantissa,
int exponent,
unchecked) noexcept
: negative_(negative), mantissa_{mantissa}, exponent_{exponent}
: mantissa_{mantissa}, exponent_{exponent}, negative_(negative)
{
}