Skip to content

Commit

Permalink
Fix non-unity build
Browse files Browse the repository at this point in the history
  • Loading branch information
gregtatcam committed Feb 7, 2024
1 parent d1e7fe4 commit 3207fae
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/ripple/app/paths/impl/Steps.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

/**
Expand Down Expand Up @@ -627,6 +629,12 @@ make_BookStepMX(StrandContext const& ctx, Issue const& in);
std::pair<TER, std::unique_ptr<Step>>
make_BookStepXM(StrandContext const& ctx, Issue const& out);

std::pair<TER, std::unique_ptr<Step>>
make_BookStepMI(StrandContext const& ctx, Issue const& in, Issue const& out);

std::pair<TER, std::unique_ptr<Step>>
make_BookStepIM(StrandContext const& ctx, Issue const& in, Issue const& out);

template <class InAmt, class OutAmt>
bool
isDirectXrpToXrp(Strand const& strand);
Expand Down
1 change: 1 addition & 0 deletions src/ripple/protocol/STPathSet.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@

#include <ripple/basics/CountedObject.h>
#include <ripple/json/json_value.h>
#include <ripple/protocol/Asset.h>
#include <ripple/protocol/SField.h>
#include <ripple/protocol/STBase.h>
#include <ripple/protocol/UintTypes.h>
Expand Down
2 changes: 2 additions & 0 deletions src/test/app/MPToken_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@

#include <ripple/protocol/Feature.h>
#include <ripple/protocol/jss.h>
#include <test/jtx/AMM.h>
#include <test/jtx/AMMTest.h>
#include <test/jtx.h>

namespace ripple {
Expand Down

0 comments on commit 3207fae

Please sign in to comment.