mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-16 11:33:03 +01:00
Mark GuestList::FilterArguments comparisons const
This commit is contained in:
@@ -104,11 +104,11 @@ private:
|
||||
return firstStrId;
|
||||
}
|
||||
|
||||
bool operator==(const FilterArguments& other)
|
||||
bool operator==(const FilterArguments& other) const
|
||||
{
|
||||
return std::memcmp(args, other.args, sizeof(args)) == 0;
|
||||
}
|
||||
bool operator!=(const FilterArguments& other)
|
||||
bool operator!=(const FilterArguments& other) const
|
||||
{
|
||||
return !(*this == other);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user