diff --git a/SDK/include/NDK/Entity.inl b/SDK/include/NDK/Entity.inl index 2d9bd42a7..b909f3cc2 100644 --- a/SDK/include/NDK/Entity.inl +++ b/SDK/include/NDK/Entity.inl @@ -15,7 +15,7 @@ namespace Ndk static_assert(std::is_base_of(), "ComponentType is not a component"); // Allocation et affectation du component - std::unique_ptr ptr(new ComponentType(std::forward(args)...)); + std::unique_ptr ptr(new ComponentType(std::forward(args)...)); return static_cast(AddComponent(std::move(ptr))); }