Removed some multiple declaraions inside for loops that MSVC++ doesn't like

This commit is contained in:
evomarc 2002-08-02 07:40:47 +00:00
commit 86c7c8fe95
2 changed files with 11 additions and 9 deletions

View file

@ -97,7 +97,7 @@ bool eoCheckPoint<EOT>::operator()(const eoPop<EOT>& _pop)
(*monitors[i])();
bool bContinue = true;
for (unsigned i = 0; i < continuators.size(); ++i)
for (i = 0; i < continuators.size(); ++i)
if ( !(*continuators[i])(_pop) )
bContinue = false;