Make parenthesization less confusing

This commit is contained in:
Tyler Neely 2022-08-02 07:02:17 +00:00
parent dd93b594bc
commit e935a9a7b1

View File

@ -38,7 +38,7 @@ struct Address {
}
bool operator==(const Address &other) const {
return ((unique_id == other.unique_id) && last_known_ip == other.last_known_ip) &&
return (unique_id == other.unique_id) && (last_known_ip == other.last_known_ip) &&
(last_known_port == other.last_known_port);
}