From 3e7facc3421a36d276d0a20e32a4837fd3cc59a9 Mon Sep 17 00:00:00 2001 From: Lynix Date: Fri, 1 Apr 2016 18:58:37 +0200 Subject: [PATCH] Sdk/World: Fix handles when moving Former-commit-id: 0e5866864150bd607db028deb9c972ace6b50caf --- SDK/include/NDK/World.inl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/SDK/include/NDK/World.inl b/SDK/include/NDK/World.inl index 64212357a..91ebc3922 100644 --- a/SDK/include/NDK/World.inl +++ b/SDK/include/NDK/World.inl @@ -13,7 +13,8 @@ namespace Ndk AddDefaultSystems(); } - inline World::World(World&& world) noexcept + inline World::World(World&& world) noexcept : + HandledObject(std::move(world)) { operator=(std::move(world)); }