Remove a const in a return type functor template

This commit is contained in:
Johann Dreo 2013-04-03 13:50:59 +02:00
commit cb97ce47cc

View file

@ -44,7 +44,7 @@
* Functor allowing to compare two solutions. * Functor allowing to compare two solutions.
*/ */
template < class MOEOT > template < class MOEOT >
class moeoComparator : public eoBF < const MOEOT &, const MOEOT &, const bool > class moeoComparator : public eoBF < const MOEOT &, const MOEOT &, bool >
{}; {};
#endif /*MOEOCOMPARATOR_H_*/ #endif /*MOEOCOMPARATOR_H_*/