diff options
author | max-001 <maxsmits21@kpnmail.nl> | 2024-11-07 09:45:08 +0100 |
---|---|---|
committer | max-001 <maxsmits21@kpnmail.nl> | 2024-11-07 09:45:08 +0100 |
commit | fd60c0280440da053948f7500657ae65b94036bf (patch) | |
tree | 15a2c1408a8f69e7fef7944468250eb35a469db2 /src/crepe/ComponentManager.hpp | |
parent | e0db2fa06232e9f081df6dac2e360195becae17c (diff) |
Improved RAII
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 |