Merge pull request #5155 from comex/xx-default

Fix "explicitly defaulted but implicitly deleted" warning
This commit is contained in:
LC
2020-12-06 19:05:39 -05:00
committed by GitHub

View File

@ -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);