summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-08-16 16:15:00 +0200
committerLioncash <mathew1800@gmail.com>2018-08-16 16:21:14 +0200
commita0ce6de9136355410365f24fbdcab734700e88af (patch)
treee365c87268960cc9dce57f9afb00d0266901bc97 /src/core
parentMerge pull request #1005 from DarkLordZach/registered-fmt (diff)
downloadyuzu-a0ce6de9136355410365f24fbdcab734700e88af.tar
yuzu-a0ce6de9136355410365f24fbdcab734700e88af.tar.gz
yuzu-a0ce6de9136355410365f24fbdcab734700e88af.tar.bz2
yuzu-a0ce6de9136355410365f24fbdcab734700e88af.tar.lz
yuzu-a0ce6de9136355410365f24fbdcab734700e88af.tar.xz
yuzu-a0ce6de9136355410365f24fbdcab734700e88af.tar.zst
yuzu-a0ce6de9136355410365f24fbdcab734700e88af.zip
Diffstat (limited to 'src/core')
-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();
/**