--- parser3/src/include/pa_array.h 2009/04/17 23:21:12 1.73 +++ parser3/src/include/pa_array.h 2009/04/21 09:23:21 1.75 @@ -8,7 +8,7 @@ #ifndef PA_ARRAY_H #define PA_ARRAY_H -static const char * const IDENT_ARRAY_Y="$Date: 2009/04/17 23:21:12 $"; +static const char * const IDENT_ARRAY_Y="$Date: 2009/04/21 09:23:21 $"; // includes @@ -83,9 +83,12 @@ public: felements=fallocated?static_cast(malloc(fallocated*sizeof(T))):0; } +#ifdef USE_DESTRUCTORS inline ~Array(){ - free(felements); + if(felements) + free(felements); } +#endif /// how many items are in Array inline size_t count() const { return fused; }