Problem with TArrayI and the debugger on windows

Hi,

I run the following code on windows with visual studio .NET 2003 :

#include <TArrayI.h>

int main() {
TArrayI *aa = new TArrayI(10);
delete aa;
return 1;
}

When I run it without the debugger it runs fine. However in debugging mode it crashes when he attempts to delete aa.

Can anyone reproduce that?

Matthias

Hi,
you are mixing release and debug versions of your build and ROOT. Please search the forum for “release” and “debug”.
Axel.