mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 04:08:55 +00:00
Device: Provide operator!= counterparts to operator== for DeviceQualifier
Makes comparison logic symmetric
This commit is contained in:
parent
4b53093acb
commit
5862d1fc41
2 changed files with 15 additions and 1 deletions
|
@ -136,8 +136,12 @@ public:
|
|||
void FromDevice(const Device* const dev);
|
||||
void FromString(const std::string& str);
|
||||
std::string ToString() const;
|
||||
|
||||
bool operator==(const DeviceQualifier& devq) const;
|
||||
bool operator==(const Device* const dev) const;
|
||||
bool operator!=(const DeviceQualifier& devq) const;
|
||||
|
||||
bool operator==(const Device* dev) const;
|
||||
bool operator!=(const Device* dev) const;
|
||||
|
||||
std::string source;
|
||||
int cid;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue