* fixed regression with gcc 4.7
This commit is contained in:
parent
46b3f77d9c
commit
d44a696e21
4 changed files with 6 additions and 4 deletions
|
|
@ -212,7 +212,7 @@ public:
|
|||
//! Print term values and descriptions
|
||||
void printAll(std::ostream& os) const {
|
||||
for (size_type i=0; i < size(); ++i )
|
||||
os << FitnessTraits::getDescription(i) << " = " << operator[](i) << " ";
|
||||
os << FitnessTraits::getDescription(i) << " = " << this->operator[](i) << " ";
|
||||
}
|
||||
|
||||
//! Comparison, using less by default
|
||||
|
|
|
|||
Reference in a new issue