diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-08-22 00:17:03 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-08-22 00:46:00 +0300 |
commit | e26c01fe66bc698555fdee9d681b3abd6822848a (patch) | |
tree | e74773ce1c66a714ee933d8228d94d205a37aa43 /src/net/serverinfo.h | |
parent | d181a2fb30ac73173fba851d4b2f7ca6f7d46ca0 (diff) | |
download | plus-e26c01fe66bc698555fdee9d681b3abd6822848a.tar.gz plus-e26c01fe66bc698555fdee9d681b3abd6822848a.tar.bz2 plus-e26c01fe66bc698555fdee9d681b3abd6822848a.tar.xz plus-e26c01fe66bc698555fdee9d681b3abd6822848a.zip |
Remove some parentheses.
Diffstat (limited to 'src/net/serverinfo.h')
-rw-r--r-- | src/net/serverinfo.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/net/serverinfo.h b/src/net/serverinfo.h index f5da554ee..2bdec0251 100644 --- a/src/net/serverinfo.h +++ b/src/net/serverinfo.h @@ -181,14 +181,16 @@ class ServerInfo final bool operator==(const ServerInfo &other) const { - return (name == other.name && hostname == other.hostname && - port == other.port); + return name == other.name && + hostname == other.hostname && + port == other.port; } bool operator!=(const ServerInfo &other) const { - return (name != other.name || hostname != other.hostname || - port != other.port); + return name != other.name || + hostname != other.hostname || + port != other.port; } static ServerTypeT parseType(const std::string &serverType) |