Fix formatting

Signed-off-by: JCW <a1q123456@users.noreply.github.com>
This commit is contained in:
JCW
2025-08-21 15:16:34 +01:00
parent 5cf589af16
commit 0b31d52896
2 changed files with 2 additions and 3 deletions

View File

@@ -365,8 +365,7 @@ public:
/** Journal has no default constructor. */ /** Journal has no default constructor. */
Journal() = delete; Journal() = delete;
Journal(Journal const& other) Journal(Journal const& other) : Journal(other, nullptr)
: Journal(other, nullptr)
{ {
} }

View File

@@ -23,9 +23,9 @@
#include <xrpl/beast/utility/Journal.h> #include <xrpl/beast/utility/Journal.h>
#include <xrpl/json/json_value.h> #include <xrpl/json/json_value.h>
#include <memory>
#include <source_location> #include <source_location>
#include <utility> #include <utility>
#include <memory>
namespace ripple::log { namespace ripple::log {