From 7c918d8122f7344eacf66401c487c170342e9d71 Mon Sep 17 00:00:00 2001 From: Valentin Balaschenko <13349202+vlntb@users.noreply.github.com> Date: Thu, 22 Jan 2026 15:20:41 +0000 Subject: [PATCH] improve packing of Number --- include/xrpl/basics/Number.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/xrpl/basics/Number.h b/include/xrpl/basics/Number.h index 62329c063c..8983c4ce7d 100644 --- a/include/xrpl/basics/Number.h +++ b/include/xrpl/basics/Number.h @@ -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) { }