summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLC <mathew1800@gmail.com>2020-12-06 19:05:39 -0500
committerGitHub <noreply@github.com>2020-12-06 19:05:39 -0500
commit5933667cb83b690d029b9d5b646dc93f1ef4fda8 (patch)
treef8ee8a9de18e0aa21f5675573b27755067a11e13 /src
parent0dc234c5ea51667c99d64c5f13f8a11cc4865455 (diff)
parente31cb50405daae5d7189a98da272ca6c08ca8e04 (diff)
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.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);