Update archdefs.h (#1684)

Fix typo in != operator
This commit is contained in:
jdavidberger 2026-04-01 11:17:04 -06:00 committed by GitHub
parent 10c5997007
commit 12bb6df237
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ struct GroupId
int8_t x = 0, y = 0;
bool operator==(const GroupId &other) const { return (type == other.type) && (x == other.x) && (y == other.y); }
bool operator!=(const GroupId &other) const { return (type != other.type) || (x != other.x) || (y == other.y); }
bool operator!=(const GroupId &other) const { return (type != other.type) || (x != other.x) || (y != other.y); }
unsigned int hash() const { return mkhash(mkhash(x, y), int(type)); }
};