* removed some warnings

This commit is contained in:
Caner Candan 2011-01-27 17:50:11 +01:00
commit 36fe44b898
5 changed files with 9 additions and 7 deletions

View file

@ -69,7 +69,8 @@ public:
/** Do the job: simple loop over the offspring */
void operator()(eoPop<EOT> & _parents, eoPop<EOT> & _offspring)
{
apply<EOT>(eval, _offspring);
(void)_parents;
apply<EOT>(eval, _offspring);
}
private: