bugfix: typo on _this_

This commit is contained in:
Johann Dreo 2010-08-30 22:50:34 +02:00
commit 528893cba9

View file

@ -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); }