changed int to size_t
This commit is contained in:
parent
adcb2c38b8
commit
33803be4cd
1 changed files with 1 additions and 1 deletions
|
|
@ -4,7 +4,7 @@
|
||||||
/// clears the memory
|
/// clears the memory
|
||||||
eoFunctorStore::~eoFunctorStore()
|
eoFunctorStore::~eoFunctorStore()
|
||||||
{
|
{
|
||||||
for (int i = 0; i < vec.size(); ++i)
|
for (size_t i = 0; i < vec.size(); ++i)
|
||||||
{
|
{
|
||||||
delete vec[i];
|
delete vec[i];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Reference in a new issue