Fix CHashCode compare operator

This commit is contained in:
kaetemi 2015-03-29 16:58:07 +02:00
parent 9cd1a4528c
commit 0a2d358e31

View file

@ -242,7 +242,7 @@ public:
size_t operator () ( const TDataSetRow &index ) const { return index.getHashCode(); }
bool operator() (const TDataSetRow &index1, const TDataSetRow &index2) const { return index1.getHashCode() < index2.getHashCode(); }
bool operator() (const TDataSetRow &index1, const TDataSetRow &index2) const { return index1 < index2; }
};
/// Warning: method to avoid (use it only when using rows as a static array)