Fix formatting

This commit is contained in:
JCW
2025-07-11 11:10:59 +01:00
parent 1bd3d227ff
commit 9dbc4e1c64
2 changed files with 3 additions and 2 deletions

View File

@@ -143,7 +143,7 @@ public:
return *array_; return *array_;
} }
template <typename ...TArgs> template <typename... TArgs>
ProxyType ProxyType
createItem(TArgs&&... args) createItem(TArgs&&... args)
{ {

View File

@@ -30,7 +30,8 @@ struct TypedLedgerEntries_test : public beast::unit_test::suite
{ {
testcase("testAccessSTArrayProxy"); testcase("testAccessSTArrayProxy");
STArray innerArray; STArray innerArray;
STArrayProxy<InnerObjectType<SFieldNames::field_sfSignerEntry>> array{&innerArray}; STArrayProxy<InnerObjectType<SFieldNames::field_sfSignerEntry>> array{
&innerArray};
BEAST_EXPECT(array.empty()); BEAST_EXPECT(array.empty());
auto item = array.createItem(); auto item = array.createItem();