Migration from SVN

This commit is contained in:
quemy 2012-08-30 11:30:11 +02:00
commit 8cd56f37db
29069 changed files with 0 additions and 4096888 deletions

18
eo/src/eoFunctorStore.cpp Normal file
View file

@ -0,0 +1,18 @@
#ifdef _MSC_VER
// to avoid long name warnings
#pragma warning(disable:4786)
#endif
#include <cstddef>
#include <eoFunctorStore.h>
#include <eoFunctor.h>
/// clears the memory
eoFunctorStore::~eoFunctorStore()
{
for( std::size_t i = 0; i < vec.size(); ++i) {
delete vec[i];
}
}