Skip to content

Commit bccea68

Browse files
committed
Fix formatting
1 parent 8cc6fc7 commit bccea68

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/xrpld/app/misc/NetworkOPs.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ class NetworkOPsImp final : public NetworkOPs
427427
isFull() override;
428428

429429
void
430-
setMode(OperatingMode om, const char* reason) override;
430+
setMode(OperatingMode om, char const* reason) override;
431431

432432
bool
433433
isBlocked() override;
@@ -2549,7 +2549,7 @@ NetworkOPsImp::pubPeerStatus(std::function<Json::Value(void)> const& func)
25492549
}
25502550

25512551
void
2552-
NetworkOPsImp::setMode(OperatingMode om, const char* reason)
2552+
NetworkOPsImp::setMode(OperatingMode om, char const* reason)
25532553
{
25542554
using namespace std::chrono_literals;
25552555
if (om == OperatingMode::CONNECTED)

src/xrpld/app/misc/NetworkOPs.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ class NetworkOPs : public InfoSub::Source
210210
virtual bool
211211
isFull() = 0;
212212
virtual void
213-
setMode(OperatingMode om, const char* reason) = 0;
213+
setMode(OperatingMode om, char const* reason) = 0;
214214
virtual bool
215215
isBlocked() = 0;
216216
virtual bool

0 commit comments

Comments
 (0)