From f988b42fed4c7bf818bc96f045ba95ba7e4691af Mon Sep 17 00:00:00 2001 From: evomarc Date: Fri, 12 Jan 2001 21:31:42 +0000 Subject: [PATCH] Corrected some error in variable name after last changes in method append --- eo/src/eoPop.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eo/src/eoPop.h b/eo/src/eoPop.h index 31b76c80..79aa01e0 100644 --- a/eo/src/eoPop.h +++ b/eo/src/eoPop.h @@ -96,7 +96,7 @@ class eoPop: public vector, 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)); }