From 20dda58ebc4d50596d7db6146eae1b9ec8c8a997 Mon Sep 17 00:00:00 2001 From: Lynix Date: Sun, 10 May 2015 23:46:41 +0200 Subject: [PATCH] Ndk/World: Fixed my stupidity Former-commit-id: a73b8b1f4bcfc5c878df18f5f2337c8d2535fc74 --- SDK/include/NDK/World.hpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/SDK/include/NDK/World.hpp b/SDK/include/NDK/World.hpp index da7de8dd6..f473ae224 100644 --- a/SDK/include/NDK/World.hpp +++ b/SDK/include/NDK/World.hpp @@ -66,11 +66,12 @@ namespace Ndk struct EntityBlock { EntityBlock(Entity&& e) : - entity(std::move(e)), - aliveIndex(e.aliveIndex) + entity(std::move(e)) { } + EntityBlock(EntityBlock&& block) = default; + Entity entity; unsigned int aliveIndex; };