Browse Source
Merge pull request #5155 from comex/xx-default
Fix "explicitly defaulted but implicitly deleted" warning
pull/15/merge
LC
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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); |
|
|
|
|