mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu.git
				synced 2025-05-12 00:45:25 +00:00 
			
		
		
		
	Merge pull request #682 from lioncash/telemetry
Telemetry: Minor changes
This commit is contained in:
		
						commit
						e3da9fc367
					
				@ -52,27 +52,14 @@ public:
 | 
			
		||||
template <typename T>
 | 
			
		||||
class Field : public FieldInterface {
 | 
			
		||||
public:
 | 
			
		||||
    Field(FieldType type, std::string name, const T& value)
 | 
			
		||||
        : name(std::move(name)), type(type), value(value) {}
 | 
			
		||||
 | 
			
		||||
    Field(FieldType type, std::string name, T&& value)
 | 
			
		||||
    Field(FieldType type, std::string name, T value)
 | 
			
		||||
        : name(std::move(name)), type(type), value(std::move(value)) {}
 | 
			
		||||
 | 
			
		||||
    Field(const Field& other) : Field(other.type, other.name, other.value) {}
 | 
			
		||||
    Field(const Field&) = default;
 | 
			
		||||
    Field& operator=(const Field&) = default;
 | 
			
		||||
 | 
			
		||||
    Field& operator=(const Field& other) {
 | 
			
		||||
        type = other.type;
 | 
			
		||||
        name = other.name;
 | 
			
		||||
        value = other.value;
 | 
			
		||||
        return *this;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    Field& operator=(Field&& other) {
 | 
			
		||||
        type = other.type;
 | 
			
		||||
        name = std::move(other.name);
 | 
			
		||||
        value = std::move(other.value);
 | 
			
		||||
        return *this;
 | 
			
		||||
    }
 | 
			
		||||
    Field(Field&&) = default;
 | 
			
		||||
    Field& operator=(Field&& other) = default;
 | 
			
		||||
 | 
			
		||||
    void Accept(VisitorInterface& visitor) const override;
 | 
			
		||||
 | 
			
		||||
@ -94,11 +81,11 @@ public:
 | 
			
		||||
        return value;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    inline bool operator==(const Field<T>& other) {
 | 
			
		||||
    bool operator==(const Field& other) const {
 | 
			
		||||
        return (type == other.type) && (name == other.name) && (value == other.value);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    inline bool operator!=(const Field<T>& other) {
 | 
			
		||||
    bool operator!=(const Field& other) const {
 | 
			
		||||
        return !(*this == other);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user