mirror of
https://github.com/cemu-project/Cemu.git
synced 2024-11-30 04:54:18 +01:00
Remove unnecessary != overload
This commit is contained in:
parent
b8692803cf
commit
919d26f6a2
@ -10,7 +10,6 @@ public:
|
|||||||
virtual std::optional<std::vector<uint8_t>> read_data() = 0;
|
virtual std::optional<std::vector<uint8_t>> read_data() = 0;
|
||||||
|
|
||||||
virtual bool operator==(WiimoteDevice& o) const = 0;
|
virtual bool operator==(WiimoteDevice& o) const = 0;
|
||||||
bool operator!=(WiimoteDevice& o) const { return *this == o; }
|
|
||||||
};
|
};
|
||||||
|
|
||||||
using WiimoteDevicePtr = std::shared_ptr<WiimoteDevice>;
|
using WiimoteDevicePtr = std::shared_ptr<WiimoteDevice>;
|
||||||
|
Loading…
Reference in New Issue
Block a user