Extreme cleanup, see src/obsolete for details
This commit is contained in:
parent
7f04d616e6
commit
6d8e3a6504
141 changed files with 3937 additions and 1815 deletions
11
eo/src/eoFunctorStore.cpp
Normal file
11
eo/src/eoFunctorStore.cpp
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
#include <eoFunctorStore.h>
|
||||
#include <eoFunctor.h>
|
||||
|
||||
/// clears the memory
|
||||
eoFunctorStore::~eoFunctorStore()
|
||||
{
|
||||
for (int i = 0; i < vec.size(); ++i)
|
||||
{
|
||||
delete vec[i];
|
||||
}
|
||||
}
|
||||
Reference in a new issue