mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-02 21:11:25 +12:00
Remove redundant operators !=
This commit is contained in:
parent
98c0b3a2b1
commit
f8e05f8e3c
13 changed files with 11 additions and 251 deletions
|
@ -239,16 +239,11 @@ namespace utils
|
|||
}
|
||||
|
||||
// Comparison Operators
|
||||
bool operator ==(const address_range &other) const
|
||||
bool operator ==(const address_range& other) const
|
||||
{
|
||||
return (start == other.start && end == other.end);
|
||||
}
|
||||
|
||||
bool operator !=(const address_range &other) const
|
||||
{
|
||||
return (start != other.start || end != other.end);
|
||||
}
|
||||
|
||||
/**
|
||||
* Debug
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue