Browse Source
Merge pull request #1090 from lioncash/ctor-assign
core: Delete System copy/move constructors and assignment operators
pull/15/merge
bunnei
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
6 additions and
0 deletions
-
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(); |
|
|
|
|
|
|
|
/** |
|
|
|
|