From 5335c04616694c3d3ac233cced7aeec3d96e5532 Mon Sep 17 00:00:00 2001 From: Ed Hennis Date: Fri, 5 Sep 2025 20:28:12 -0400 Subject: [PATCH] Fix constexpr expression --- include/xrpl/basics/base_uint.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/xrpl/basics/base_uint.h b/include/xrpl/basics/base_uint.h index ca83b8e220..5cd1c5aa26 100644 --- a/include/xrpl/basics/base_uint.h +++ b/include/xrpl/basics/base_uint.h @@ -637,7 +637,7 @@ inline std::string to_short_string(base_uint const& a) { // LCOV_EXCL_START - if constexpr (a.bytes <= 4) + if constexpr (base_uint::bytes <= 4) return to_string(a); else // LCOV_EXCL_STOP