[ServerList]: Remove double semicolon (#822)

This commit is contained in:
Edo 2023-03-09 19:03:52 +00:00 committed by GitHub
parent c71eddc5a9
commit 602f8e741e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -172,7 +172,7 @@ struct std::hash<Components::ServerList::ServerInfo>
hash ^= std::hash<std::string>()(x.hostname);
hash ^= std::hash<std::string>()(x.mapname);
hash ^= std::hash<std::string>()(x.mod);
hash ^= std::hash<std::uint32_t>()(*reinterpret_cast<const std::uint32_t*>(&x.addr.getIP().bytes[0]));;
hash ^= std::hash<std::uint32_t>()(*reinterpret_cast<const std::uint32_t*>(&x.addr.getIP().bytes[0]));
hash ^= x.clients;
return hash;