mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 15:09:57 +00:00
Merge pull request #1090 from lioncash/ctor-assign
core: Delete System copy/move constructors and assignment operators
This commit is contained in:
commit
f246fd778d
1 changed files with 6 additions and 0 deletions
|
@ -40,6 +40,12 @@ namespace Core {
|
||||||
|
|
||||||
class System {
|
class System {
|
||||||
public:
|
public:
|
||||||
|
System(const System&) = delete;
|
||||||
|
System& operator=(const System&) = delete;
|
||||||
|
|
||||||
|
System(System&&) = delete;
|
||||||
|
System& operator=(System&&) = delete;
|
||||||
|
|
||||||
~System();
|
~System();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue