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

@ -47,8 +47,8 @@ public :
virtual void printHeader(std::ostream& os);
private :
std::string delim;
std::string filename;
std::string delim;
};
#endif

View file

@ -109,7 +109,7 @@ class eoNthElementFitnessStat : public eoStat<EOT, typename EOT::Fitness >
public :
typedef typename EOT::Fitness Fitness;
eoNthElementFitnessStat(int _which, std::string _description = "nth element fitness") : which(_which), eoStat<EOT, Fitness>(Fitness(), _description) {}
eoNthElementFitnessStat(int _which, std::string _description = "nth element fitness") : eoStat<EOT, Fitness>(Fitness(), _description), which(_which) {}
virtual void operator()(const eoPop<EOT>& _pop)
{