Hi @ all!
I have problems deallocating space.
MfContour2D* profile = new MfContour2D [20];
When I try to deallocate space, I get an ‘error’(Debug Assertion Failed!) und das Programm wird abgebrochen.
if ( profile != NULL )
delete profile;
The following does not work, either.
if ( profile != NULL )
delete profile;
Does anybody have an idea, what the problem may be?
Thanks a lot,…
I have problems deallocating space.
MfContour2D* profile = new MfContour2D [20];
When I try to deallocate space, I get an ‘error’(Debug Assertion Failed!) und das Programm wird abgebrochen.
if ( profile != NULL )
delete profile;
The following does not work, either.
if ( profile != NULL )
delete profile;
Does anybody have an idea, what the problem may be?
Thanks a lot,…