mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Fix CHashCode compare operator
This commit is contained in:
parent
71cc7c3197
commit
77375d6d7d
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue