Added using declarations to avoid g++-3.4 errors
This commit is contained in:
parent
1828fda30c
commit
faaadf7599
1 changed files with 7 additions and 0 deletions
|
|
@ -55,6 +55,13 @@ class eoPop: public std::vector<EOT>, public eoObject, public eoPersistent
|
|||
{
|
||||
|
||||
public:
|
||||
|
||||
using std::vector<EOT>::size;
|
||||
using std::vector<EOT>::resize;
|
||||
using std::vector<EOT>::operator[];
|
||||
using std::vector<EOT>::begin;
|
||||
using std::vector<EOT>::end;
|
||||
|
||||
typedef typename EOT::Fitness Fitness;
|
||||
/** Default ctor. Creates empty pop
|
||||
*/
|
||||
|
|
|
|||
Reference in a new issue