diff options
| author | 2020-12-06 19:05:39 -0500 | |
|---|---|---|
| committer | 2020-12-06 19:05:39 -0500 | |
| commit | 5933667cb83b690d029b9d5b646dc93f1ef4fda8 (patch) | |
| tree | f8ee8a9de18e0aa21f5675573b27755067a11e13 /src | |
| parent | Merge pull request #5146 from comex/xx-num (diff) | |
| parent | Fix "explicitly defaulted but implicitly deleted" warning (diff) | |
| download | yuzu-5933667cb83b690d029b9d5b646dc93f1ef4fda8.tar.gz yuzu-5933667cb83b690d029b9d5b646dc93f1ef4fda8.tar.xz yuzu-5933667cb83b690d029b9d5b646dc93f1ef4fda8.zip | |
Merge pull request #5155 from comex/xx-default
Fix "explicitly defaulted but implicitly deleted" warning
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/kernel/physical_core.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/physical_core.h b/src/core/hle/kernel/physical_core.h index 37513130a..801d24c28 100644 --- a/src/core/hle/kernel/physical_core.h +++ b/src/core/hle/kernel/physical_core.h | |||
| @@ -36,7 +36,7 @@ public: | |||
| 36 | PhysicalCore& operator=(const PhysicalCore&) = delete; | 36 | PhysicalCore& operator=(const PhysicalCore&) = delete; |
| 37 | 37 | ||
| 38 | PhysicalCore(PhysicalCore&&) = default; | 38 | PhysicalCore(PhysicalCore&&) = default; |
| 39 | PhysicalCore& operator=(PhysicalCore&&) = default; | 39 | PhysicalCore& operator=(PhysicalCore&&) = delete; |
| 40 | 40 | ||
| 41 | /// Initialize the core for the specified parameters. | 41 | /// Initialize the core for the specified parameters. |
| 42 | void Initialize(bool is_64_bit); | 42 | void Initialize(bool is_64_bit); |