aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/ComponentManager.hpp
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-11-07 13:32:48 +0100
committerLoek Le Blansch <loek@pipeframe.xyz>2024-11-07 13:32:48 +0100
commitb4834c99c1afced63ee0c266b38925b95782bdf6 (patch)
tree9647f4edd978e067a6c01dfdacc376865ed10bf7 /src/crepe/ComponentManager.hpp
parent41c0ea36b025f0c15c7d14db8d88eb9558085b74 (diff)
merge #20
Diffstat (limited to 'src/crepe/ComponentManager.hpp')
-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 489e188..cf9f65a 100644
--- a/src/crepe/ComponentManager.hpp
+++ b/src/crepe/ComponentManager.hpp
@@ -31,8 +31,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_ptr = new T(id, forward<Args>(args)...);
- if (instance_ptr == nullptr)
- throw std::bad_alloc();
+ if (instance_ptr == nullptr) throw std::bad_alloc();
T & instance_ref = *instance_ptr;
unique_ptr<T> instance = unique_ptr<T>(instance_ptr);