aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormax-001 <maxsmits21@kpnmail.nl>2024-11-07 09:45:08 +0100
committermax-001 <maxsmits21@kpnmail.nl>2024-11-07 09:45:08 +0100
commitfd60c0280440da053948f7500657ae65b94036bf (patch)
tree15a2c1408a8f69e7fef7944468250eb35a469db2
parente0db2fa06232e9f081df6dac2e360195becae17c (diff)
Improved RAII
-rw-r--r--src/crepe/ComponentManager.hpp3
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