mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Fix build error
This commit is contained in:
@@ -143,10 +143,11 @@ public:
|
||||
return *array_;
|
||||
}
|
||||
|
||||
template <typename ...TArgs>
|
||||
ProxyType
|
||||
createItem()
|
||||
createItem(TArgs&&... args)
|
||||
{
|
||||
return ProxyType::create();
|
||||
return ProxyType::create(std::forward<TArgs>(args)...);
|
||||
}
|
||||
|
||||
void
|
||||
|
||||
Reference in New Issue
Block a user