more adjustments for gcc-3.4 (now using optimization, go figure...)

This commit is contained in:
kuepper 2004-12-23 17:22:52 +00:00
commit 7b9e6d3e1f
4 changed files with 30 additions and 31 deletions

View file

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