bugfix: typo on _this_
This commit is contained in:
parent
ce0c969671
commit
528893cba9
1 changed files with 1 additions and 1 deletions
|
|
@ -136,7 +136,7 @@ public:
|
|||
bool operator>( const eoDualFitness<BaseType, Compare>& other ) const { return other < *this; }
|
||||
|
||||
//! Less or equal: if the other is not lesser than me
|
||||
bool operator<=( const eoDualFitness<BaseType, Compare>& other ) const { return !(other < *thisr); }
|
||||
bool operator<=( const eoDualFitness<BaseType, Compare>& other ) const { return !(other < *this); }
|
||||
|
||||
//! Greater or equal: if the other is not greater than me
|
||||
bool operator>=(const eoDualFitness<BaseType, Compare>& other ) const { return !(*this < other); }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue