mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
				synced 2025-03-21 01:53:15 +00:00 
			
		
		
		
	Fix "explicitly defaulted but implicitly deleted" warning
`PhysicalCore`'s move assignment operator was declared as `= default`, but was implicitly deleted because `PhysicalCore` has fields of reference type. Switch to explicitly deleting it to avoid a Clang warning. The move *constructor* is still defaulted, and is required to exist due to the use of `std::vector<PhysicalCore>`.
This commit is contained in:
		
							parent
							
								
									0dc234c5ea
								
							
						
					
					
						commit
						e31cb50405
					
				| @ -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); | ||||||
|  | |||||||
		Loading…
	
		Reference in New Issue
	
	Block a user
	 comex
						comex