From fabf32848556f778de78e2670599af2602ef15ce Mon Sep 17 00:00:00 2001 From: Mayukha Vadari Date: Tue, 21 Apr 2026 15:46:21 -0400 Subject: [PATCH] fix build (smh clang-tidy) --- include/xrpl/tx/SignerEntries.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/xrpl/tx/SignerEntries.h b/include/xrpl/tx/SignerEntries.h index 0b997b3e4d..91fc4bd030 100644 --- a/include/xrpl/tx/SignerEntries.h +++ b/include/xrpl/tx/SignerEntries.h @@ -42,10 +42,10 @@ public: } // For sorting to look for duplicate accounts - friend bool - operator<(SignerEntry const& lhs, SignerEntry const& rhs) + friend auto + operator<=>(SignerEntry const& lhs, SignerEntry const& rhs) { - return lhs.account < rhs.account; + return lhs.account <=> rhs.account; } friend bool