diff options
author | LC <mathew1800@gmail.com> | 2020-12-07 01:05:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-07 01:05:39 +0100 |
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 yuzu-5933667cb83b690d029b9d5b646dc93f1ef4fda8.tar.gz yuzu-5933667cb83b690d029b9d5b646dc93f1ef4fda8.tar.bz2 yuzu-5933667cb83b690d029b9d5b646dc93f1ef4fda8.tar.lz yuzu-5933667cb83b690d029b9d5b646dc93f1ef4fda8.tar.xz yuzu-5933667cb83b690d029b9d5b646dc93f1ef4fda8.tar.zst yuzu-5933667cb83b690d029b9d5b646dc93f1ef4fda8.zip |
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: PhysicalCore& operator=(const PhysicalCore&) = delete; PhysicalCore(PhysicalCore&&) = default; - PhysicalCore& operator=(PhysicalCore&&) = default; + PhysicalCore& operator=(PhysicalCore&&) = delete; /// Initialize the core for the specified parameters. void Initialize(bool is_64_bit); |