changed int to size_t

This commit is contained in:
mac 2000-08-10 16:43:39 +00:00
commit 33803be4cd

View file

@ -4,7 +4,7 @@
/// clears the memory
eoFunctorStore::~eoFunctorStore()
{
for (int i = 0; i < vec.size(); ++i)
for (size_t i = 0; i < vec.size(); ++i)
{
delete vec[i];
}