diff options
| author | Loïc Blot <nerzhul@users.noreply.github.com> | 2017-06-10 13:49:15 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-06-10 13:49:15 +0200 |
| commit | ab128e03ff555a8fc292352b0b21fc1075a4c008 (patch) | |
| tree | 41c610f0168cf67abd93d63df7f80e7e9df8d4ba /src/client.h | |
| parent | 9c497aa71f4678f7a8adcfedd37b73c5391d97ec (diff) | |
| download | dragonfireclient-ab128e03ff555a8fc292352b0b21fc1075a4c008.tar.xz | |
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/client.h')
| -rw-r--r-- | src/client.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client.h b/src/client.h index c94936d85..babfe4680 100644 --- a/src/client.h +++ b/src/client.h @@ -272,6 +272,7 @@ public: ); ~Client(); + DISABLE_CLASS_COPY(Client); void initMods(); @@ -691,7 +692,6 @@ private: GameUIFlags *m_game_ui_flags; bool m_shutdown; - DISABLE_CLASS_COPY(Client); }; #endif // !CLIENT_HEADER |
