more adjustments for gcc-3.4 (now using optimization, go figure...)
This commit is contained in:
parent
cf4849c472
commit
7b9e6d3e1f
4 changed files with 30 additions and 31 deletions
|
|
@ -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];
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Reference in a new issue