Removed extra {} in operator()

This commit is contained in:
marc 2000-03-13 10:10:00 +00:00
commit b4e61489c7

View file

@ -56,7 +56,7 @@ template <class EOT> class eoStochTournament: public eoSelectOne<EOT>
DON'T cast the fitness to a float, use the EOT comparator! */ DON'T cast the fitness to a float, use the EOT comparator! */
virtual const EOT& operator()(const eoPop<EOT>& pop) virtual const EOT& operator()(const eoPop<EOT>& pop)
{ {
return stochastic_tournament(pop, Trate)(); return stochastic_tournament(pop, Trate);
} }
private: private: