diff options
| author | 2018-08-17 00:19:55 -0400 | |
|---|---|---|
| committer | 2018-08-17 00:19:55 -0400 | |
| commit | f246fd778dd84afe10b7d8ec7072ce4f7c48b192 (patch) | |
| tree | cc1010d3a95a60bf92138a81745c3b2411ef7412 /src | |
| parent | Merge pull request #1091 from lioncash/warning (diff) | |
| parent | core: Delete System copy/move constructors and assignment operators (diff) | |
| download | yuzu-f246fd778dd84afe10b7d8ec7072ce4f7c48b192.tar.gz yuzu-f246fd778dd84afe10b7d8ec7072ce4f7c48b192.tar.xz yuzu-f246fd778dd84afe10b7d8ec7072ce4f7c48b192.zip | |
Merge pull request #1090 from lioncash/ctor-assign
core: Delete System copy/move constructors and assignment operators
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/core.h | 6 |
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 { | |||
| 40 | 40 | ||
| 41 | class System { | 41 | class System { |
| 42 | public: | 42 | public: |
| 43 | System(const System&) = delete; | ||
| 44 | System& operator=(const System&) = delete; | ||
| 45 | |||
| 46 | System(System&&) = delete; | ||
| 47 | System& operator=(System&&) = delete; | ||
| 48 | |||
| 43 | ~System(); | 49 | ~System(); |
| 44 | 50 | ||
| 45 | /** | 51 | /** |