diff options
Diffstat (limited to 'src/crepe/ComponentManager.hpp')
-rw-r--r-- | src/crepe/ComponentManager.hpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/crepe/ComponentManager.hpp b/src/crepe/ComponentManager.hpp index eac38fc..e52b679 100644 --- a/src/crepe/ComponentManager.hpp +++ b/src/crepe/ComponentManager.hpp @@ -30,8 +30,7 @@ T & ComponentManager::add_component(uint32_t id, Args &&... args) { // Create a new component of type T (arguments directly forwarded). The // constructor must be called by ComponentManager. - T * instance_pointer = new T(id, forward<Args>(args)...); - unique_ptr<T> instance = unique_ptr<T>(instance_pointer); + unique_ptr<T> instance = unique_ptr<T>(new T(id, forward<Args>(args)...)); // Check if the vector size is not greater than get_instances_max if (instance->get_instances_max() != -1 |