Merge pull request #1090 from lioncash/ctor-assign

core: Delete System copy/move constructors and assignment operators
This commit is contained in:
bunnei 2018-08-17 00:19:55 -04:00 committed by GitHub
commit f246fd778d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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();
/**