Fix build error

This commit is contained in:
JCW
2025-07-11 10:40:17 +01:00
parent 31a127eddc
commit 1bd3d227ff
2 changed files with 11 additions and 8 deletions

View File

@@ -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