Skip to content

Commit 0ae577e

Browse files
committed
Fix formatting
1 parent a3b0a5d commit 0ae577e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/test/app/LedgerReplay_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ class MagicInboundLedgers : public InboundLedgers
7979
uint256 const& hash,
8080
std::uint32_t seq,
8181
InboundLedger::Reason,
82-
const char*) override
82+
char const*) override
8383
{
8484
if (bhvr == InboundLedgersBehavior::DropAll)
8585
return {};

src/xrpld/app/ledger/InboundLedgers.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class InboundLedgers
2525
uint256 const& hash,
2626
std::uint32_t seq,
2727
InboundLedger::Reason,
28-
const char* context) = 0;
28+
char const* context) = 0;
2929

3030
// Callers should use this if they are known to be executing on the Job
3131
// Queue. TODO review whether all callers of acquire() can use this

src/xrpld/app/ledger/detail/InboundLedgers.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ class InboundLedgersImp : public InboundLedgers
5252
uint256 const& hash,
5353
std::uint32_t seq,
5454
InboundLedger::Reason reason,
55-
const char* context) override
55+
char const* context) override
5656
{
5757
auto doAcquire = [&, seq, reason]() -> std::shared_ptr<Ledger const> {
5858
XRPL_ASSERT(

0 commit comments

Comments
 (0)