mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu.git
				synced 2025-05-12 00:45:25 +00:00 
			
		
		
		
	telemetry: Silence initialization order warnings
This commit is contained in:
		
							parent
							
								
									ee08c39b72
								
							
						
					
					
						commit
						33eba9b96e
					
				| @ -53,10 +53,10 @@ template <typename T> | ||||
| class Field : public FieldInterface { | ||||
| public: | ||||
|     Field(FieldType type, std::string name, const T& value) | ||||
|         : type(type), name(std::move(name)), value(value) {} | ||||
|         : name(std::move(name)), type(type), value(value) {} | ||||
| 
 | ||||
|     Field(FieldType type, std::string name, T&& value) | ||||
|         : type(type), name(std::move(name)), value(std::move(value)) {} | ||||
|         : name(std::move(name)), type(type), value(std::move(value)) {} | ||||
| 
 | ||||
|     Field(const Field& other) : Field(other.type, other.name, other.value) {} | ||||
| 
 | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user
	 Lioncash
						Lioncash