From 3207fae6e278951a8a7308a69ab1df9bd16cdade Mon Sep 17 00:00:00 2001 From: Gregory Tsipenyuk Date: Wed, 7 Feb 2024 15:41:36 -0500 Subject: [PATCH] Fix non-unity build --- src/ripple/app/paths/impl/Steps.h | 8 ++++++++ src/ripple/protocol/STPathSet.h | 1 + src/test/app/MPToken_test.cpp | 2 ++ 3 files changed, 11 insertions(+) diff --git a/src/ripple/app/paths/impl/Steps.h b/src/ripple/app/paths/impl/Steps.h index 4feceb53dc9..5797b47335f 100644 --- a/src/ripple/app/paths/impl/Steps.h +++ b/src/ripple/app/paths/impl/Steps.h @@ -517,6 +517,8 @@ bool checkNear(IOUAmount const& expected, IOUAmount const& actual); bool checkNear(XRPAmount const& expected, XRPAmount const& actual); +bool +checkNear(MPTAmount const& expected, MPTAmount const& actual); /// @endcond /** @@ -627,6 +629,12 @@ make_BookStepMX(StrandContext const& ctx, Issue const& in); std::pair> make_BookStepXM(StrandContext const& ctx, Issue const& out); +std::pair> +make_BookStepMI(StrandContext const& ctx, Issue const& in, Issue const& out); + +std::pair> +make_BookStepIM(StrandContext const& ctx, Issue const& in, Issue const& out); + template bool isDirectXrpToXrp(Strand const& strand); diff --git a/src/ripple/protocol/STPathSet.h b/src/ripple/protocol/STPathSet.h index 272e750df8b..515e30f2dc1 100644 --- a/src/ripple/protocol/STPathSet.h +++ b/src/ripple/protocol/STPathSet.h @@ -22,6 +22,7 @@ #include #include +#include #include #include #include diff --git a/src/test/app/MPToken_test.cpp b/src/test/app/MPToken_test.cpp index 4d300c1fe44..ae1cb9d6263 100644 --- a/src/test/app/MPToken_test.cpp +++ b/src/test/app/MPToken_test.cpp @@ -19,6 +19,8 @@ #include #include +#include +#include #include namespace ripple {