Changed construction order as gcc was warning

This commit is contained in:
mac 2000-09-09 13:52:16 +00:00
commit f7c157c154
4 changed files with 6 additions and 6 deletions

View file

@ -54,7 +54,7 @@ template<class EOT> class eoEvalFuncCounter : public eoEvalFunc<EOT>, public eoV
{
public :
eoEvalFuncCounter(eoEvalFunc<EOT>& _func, std::string _name = "eval_counter")
: func(_func), eoValueParam<unsigned long>(0, _name) {}
: eoValueParam<unsigned long>(0, _name), func(_func) {}
void operator()(EOT& _eo)
{