summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLC <mathew1800@gmail.com>2020-12-07 01:05:39 +0100
committerGitHub <noreply@github.com>2020-12-07 01:05:39 +0100
commit5933667cb83b690d029b9d5b646dc93f1ef4fda8 (patch)
treef8ee8a9de18e0aa21f5675573b27755067a11e13
parentMerge pull request #5146 from comex/xx-num (diff)
parentFix "explicitly defaulted but implicitly deleted" warning (diff)
downloadyuzu-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
-rw-r--r--src/core/hle/kernel/physical_core.h2
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);