Skip to content
Snippets Groups Projects
Unverified Commit 5933667c authored by LC's avatar LC Committed by GitHub
Browse files

Merge pull request #5155 from comex/xx-default

Fix "explicitly defaulted but implicitly deleted" warning
parents 0dc234c5 e31cb504
No related branches found
No related tags found
No related merge requests found
...@@ -36,7 +36,7 @@ public: ...@@ -36,7 +36,7 @@ public:
PhysicalCore& operator=(const PhysicalCore&) = delete; PhysicalCore& operator=(const PhysicalCore&) = delete;
PhysicalCore(PhysicalCore&&) = default; PhysicalCore(PhysicalCore&&) = default;
PhysicalCore& operator=(PhysicalCore&&) = default; PhysicalCore& operator=(PhysicalCore&&) = delete;
/// Initialize the core for the specified parameters. /// Initialize the core for the specified parameters.
void Initialize(bool is_64_bit); void Initialize(bool is_64_bit);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment