Corrected some error in variable name after last changes in method append

This commit is contained in:
evomarc 2001-01-12 21:31:42 +00:00
commit f988b42fed

View file

@ -96,7 +96,7 @@ class eoPop: public vector<EOT>, public eoObject, public eoPersistent
if (_newPopSize == oldSize) if (_newPopSize == oldSize)
return; return;
resize(_newPopSize); // adjust the size resize(_newPopSize); // adjust the size
for ( unsigned i = oldSize; i < _popSize; i++ ) for ( unsigned i = oldSize; i < _newPopSize; i++ )
{ {
_chromInit(operator[](i)); _chromInit(operator[](i));
} }