[COMPATIBILITY] Remove a unused parameter in eoInterquartileRangeStat constructor

This commit is contained in:
Johann Dreo 2013-06-13 14:49:08 +02:00
commit 819c2c3106

View file

@ -483,7 +483,7 @@ class eoInterquartileRangeStat : public eoStat< EOT, typename EOT::Fitness >
public:
using eoStat<EOT, typename EOT::Fitness>::value;
eoInterquartileRangeStat( typename EOT::Fitness start, std::string description = "IQR" ) : eoStat<EOT,typename EOT::Fitness>( start, description ) {}
eoInterquartileRangeStat( std::string description = "IQR" ) : eoStat<EOT,typename EOT::Fitness>( 0.0, description ) {}
virtual void operator()( const eoPop<EOT> & _pop )
{