some more tests added

This commit is contained in:
2021-03-11 12:44:35 +01:00
parent e55f74a00e
commit 33823b445c
4 changed files with 22 additions and 4 deletions

View File

@ -96,11 +96,11 @@ union gp_id_t {
return raw == INVALID_GPID;
}
bool operator==(const sid_t& other) const {
bool operator==(const gp_id_t& other) const {
return raw == other.raw;
}
bool operator!=(const sid_t& other) const {
bool operator!=(const gp_id_t& other) const {
return not (raw == other.raw);
}
};