From b934eef2a3d1b2ac5ee8837c795a9f4afeebe939 Mon Sep 17 00:00:00 2001 From: Lynix Date: Wed, 1 Jun 2016 14:11:58 +0200 Subject: [PATCH] Sdk/World: Fix compilation error when submitting arguments on system creation Former-commit-id: c46b7be1d998d5bdf87c25b1f4acc97de771ac9a [formerly e39dce0eaeb275d5ca62dfb8980869a7cc68c857] Former-commit-id: c799b611b8faefe26cfe6c06a77072c51f3c9c28 --- SDK/include/NDK/World.inl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SDK/include/NDK/World.inl b/SDK/include/NDK/World.inl index 91ebc3922..ba2b33bd4 100644 --- a/SDK/include/NDK/World.inl +++ b/SDK/include/NDK/World.inl @@ -44,7 +44,7 @@ namespace Ndk static_assert(std::is_base_of::value, "SystemType is not a component"); // Allocation et affectation du component - std::unique_ptr ptr(new SystemType(std::forward(args)...)); + std::unique_ptr ptr(new SystemType(std::forward(args)...)); return static_cast(AddSystem(std::move(ptr))); }