Corrected some error in variable name after last changes in method append
This commit is contained in:
parent
e532234d1c
commit
f988b42fed
1 changed files with 1 additions and 1 deletions
|
|
@ -96,7 +96,7 @@ class eoPop: public vector<EOT>, public eoObject, public eoPersistent
|
|||
if (_newPopSize == oldSize)
|
||||
return;
|
||||
resize(_newPopSize); // adjust the size
|
||||
for ( unsigned i = oldSize; i < _popSize; i++ )
|
||||
for ( unsigned i = oldSize; i < _newPopSize; i++ )
|
||||
{
|
||||
_chromInit(operator[](i));
|
||||
}
|
||||
|
|
|
|||
Reference in a new issue