summaryrefslogtreecommitdiff
path: root/src/net/serverinfo.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/serverinfo.h')
-rw-r--r--src/net/serverinfo.h10
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)