refs #104 replaced all remaining hash-based comparisons with the multimethod compare()

This commit is contained in:
Mathew Sutcliffe
2014-02-17 15:39:01 +00:00
parent dd4e2c58f3
commit 2dd72c6d3e
6 changed files with 30 additions and 10 deletions

View File

@@ -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;
}
/*