Fix using directives for gcc-4.1
This commit is contained in:
parent
929974805d
commit
10d582b31d
19 changed files with 86 additions and 85 deletions
|
|
@ -56,8 +56,8 @@ class eoEsChromInit : public eoRealInitBounded<EOT>
|
|||
{
|
||||
public:
|
||||
|
||||
using eoEsChromInit<EOT>::size;
|
||||
using eoEsChromInit<EOT>::theBounds;
|
||||
using eoRealInitBounded<EOT>::size;
|
||||
using eoRealInitBounded<EOT>::theBounds;
|
||||
|
||||
typedef typename EOT::Fitness FitT;
|
||||
|
||||
|
|
|
|||
|
|
@ -41,7 +41,7 @@ class eoEsFull : public eoVector<Fit, double>
|
|||
{
|
||||
public:
|
||||
|
||||
using eoEsFull< Fit >::size;
|
||||
using eoVector<Fit, double>::size;
|
||||
|
||||
|
||||
typedef double Type;
|
||||
|
|
|
|||
|
|
@ -38,7 +38,7 @@ class eoEsStdev : public eoVector<Fit, double>
|
|||
{
|
||||
public:
|
||||
|
||||
using eoEsStdev<Fit>::size;
|
||||
using eoVector<Fit, double>::size;
|
||||
|
||||
typedef double Type;
|
||||
|
||||
|
|
|
|||
Reference in a new issue