From 8baadd5ec39ef39019c6f8c990132ebcce71e87b Mon Sep 17 00:00:00 2001 From: Bronek Kozicki Date: Mon, 3 Feb 2025 11:39:52 +0000 Subject: [PATCH] Fix clang build error --- src/test/jtx/mpt.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/jtx/mpt.h b/src/test/jtx/mpt.h index cf6b017f8e..7de6425b9d 100644 --- a/src/test/jtx/mpt.h +++ b/src/test/jtx/mpt.h @@ -88,8 +88,8 @@ public: struct MPTInit { std::vector holders = {}; - PrettyAmount const& xrp = XRP(10'000); - PrettyAmount const& xrpHolders = XRP(10'000); + PrettyAmount const xrp = XRP(10'000); + PrettyAmount const xrpHolders = XRP(10'000); bool fund = true; bool close = true; };