mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-01 13:36:48 +08:00
refs #104 replaced all remaining hash-based comparisons with the multimethod compare()
This commit is contained in:
@@ -90,7 +90,7 @@ namespace BlackMisc
|
||||
bool CServer::operator ==(const CServer &other) const
|
||||
{
|
||||
if (this == &other) return true;
|
||||
return this->getValueHash() == other.getValueHash();
|
||||
return compare(*this, other) == 0;
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user