summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-08-17 06:19:55 +0200
committerGitHub <noreply@github.com>2018-08-17 06:19:55 +0200
commitf246fd778dd84afe10b7d8ec7072ce4f7c48b192 (patch)
treecc1010d3a95a60bf92138a81745c3b2411ef7412 /src
parentMerge pull request #1091 from lioncash/warning (diff)
parentcore: Delete System copy/move constructors and assignment operators (diff)
downloadyuzu-f246fd778dd84afe10b7d8ec7072ce4f7c48b192.tar
yuzu-f246fd778dd84afe10b7d8ec7072ce4f7c48b192.tar.gz
yuzu-f246fd778dd84afe10b7d8ec7072ce4f7c48b192.tar.bz2
yuzu-f246fd778dd84afe10b7d8ec7072ce4f7c48b192.tar.lz
yuzu-f246fd778dd84afe10b7d8ec7072ce4f7c48b192.tar.xz
yuzu-f246fd778dd84afe10b7d8ec7072ce4f7c48b192.tar.zst
yuzu-f246fd778dd84afe10b7d8ec7072ce4f7c48b192.zip
Diffstat (limited to '')
-rw-r--r--src/core/core.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/core.h b/src/core/core.h
index d98b15a71..790e23cae 100644
--- a/src/core/core.h
+++ b/src/core/core.h
@@ -40,6 +40,12 @@ namespace Core {
class System {
public:
+ System(const System&) = delete;
+ System& operator=(const System&) = delete;
+
+ System(System&&) = delete;
+ System& operator=(System&&) = delete;
+
~System();
/**