changed int compare to size_t

This commit is contained in:
mac 2000-08-10 16:36:55 +00:00
commit d3b83c70b0

View file

@ -97,7 +97,7 @@ template <class EOT> class eoPlus : public eoMerge<EOT>
{
offspring.reserve(offspring.size() + _pop.size());
for (int i = 0; i < _pop.size(); ++i)
for (size_t i = 0; i < _pop.size(); ++i)
{
offspring.push_back(_pop[i]);
}