Changed construction order as gcc was warning
This commit is contained in:
parent
fd8a2529a5
commit
f7c157c154
4 changed files with 6 additions and 6 deletions
|
|
@ -47,8 +47,8 @@ public :
|
|||
virtual void printHeader(std::ostream& os);
|
||||
|
||||
private :
|
||||
std::string delim;
|
||||
std::string filename;
|
||||
std::string delim;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
Reference in a new issue