diff options
Diffstat (limited to 'lib/collection.hpp')
-rw-r--r-- | lib/collection.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/collection.hpp b/lib/collection.hpp index 4a54124..65d72f3 100644 --- a/lib/collection.hpp +++ b/lib/collection.hpp @@ -16,7 +16,8 @@ public: template<typename T = Object, typename... Params> auto - create(Params &&... params) requires std::is_base_of_v<Object, T> + create(Params &&... params) + requires std::is_base_of_v<Object, T> { if constexpr (shared) { auto obj = std::make_shared<T>(std::forward<Params>(params)...); |