summaryrefslogtreecommitdiff
path: root/src/script/scripting_server.h
diff options
context:
space:
mode:
authorLoïc Blot <nerzhul@users.noreply.github.com>2017-06-10 13:49:15 +0200
committerGitHub <noreply@github.com>2017-06-10 13:49:15 +0200
commitab128e03ff555a8fc292352b0b21fc1075a4c008 (patch)
tree41c610f0168cf67abd93d63df7f80e7e9df8d4ba /src/script/scripting_server.h
parent9c497aa71f4678f7a8adcfedd37b73c5391d97ec (diff)
downloadminetest-ab128e03ff555a8fc292352b0b21fc1075a4c008.tar.gz
minetest-ab128e03ff555a8fc292352b0b21fc1075a4c008.tar.bz2
minetest-ab128e03ff555a8fc292352b0b21fc1075a4c008.zip
C++11 patchset 6: forbid object copy using assigment/copy function deleters (#5945)
C++11 implement function deleting, it's generally used to prevent some object copy In script API use this function removal on ScriptApiBase instead of ScriptApiClient/Server/MainMenu, this affect all ScriptApis Move DISABLE_CLASS_COPY with constructor, the deleted function permit to replace function in its original place
Diffstat (limited to 'src/script/scripting_server.h')
-rw-r--r--src/script/scripting_server.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/script/scripting_server.h b/src/script/scripting_server.h
index 1b335406e..fd97ea40b 100644
--- a/src/script/scripting_server.h
+++ b/src/script/scripting_server.h
@@ -28,7 +28,6 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include "cpp_api/s_player.h"
#include "cpp_api/s_server.h"
#include "cpp_api/s_security.h"
-#include "util/basic_macros.h"
/*****************************************************************************/
/* Scripting <-> Server Game Interface */
@@ -51,7 +50,6 @@ public:
private:
void InitializeModApi(lua_State *L, int top);
- DISABLE_CLASS_COPY(ServerScripting);
};
void log_deprecated(const std::string &message);