* fixed gcc 4.7 errors: ambigious calls to super class methods

This commit is contained in:
Caner Candan 2012-05-01 20:59:45 +02:00
commit cd94be6957
4 changed files with 4 additions and 4 deletions

View file

@ -46,7 +46,7 @@ public:
{ {
for (unsigned i = 0; i < _pop.size (); i++) for (unsigned i = 0; i < _pop.size (); i++)
{ {
operator ()(_pop[i]); this->operator ()(_pop[i]);
} }
} }

View file

@ -46,7 +46,7 @@ public:
{ {
for (unsigned i = 0; i < _pop.size (); i++) for (unsigned i = 0; i < _pop.size (); i++)
{ {
operator ()(_pop[i]); this->operator ()(_pop[i]);
} }
} }

View file

@ -217,7 +217,7 @@ public:
#ifndef NDEBUG #ifndef NDEBUG
// check whether the stuff is still in sync // check whether the stuff is still in sync
check_sync(index, _pop[index]); this->check_sync(index, _pop[index]);
#endif #endif
return _pop[index]; return _pop[index];

View file

@ -49,7 +49,7 @@ public:
{ {
for (unsigned i = 0; i < _pop.size (); i++) for (unsigned i = 0; i < _pop.size (); i++)
{ {
operator ()(_pop[i],i); this->operator ()(_pop[i],i);
} }
} }