Re: ROOT/CINT problem ?

Masaharu Goto (gotom@hpyiddq.jpn.hp.com)
Wed, 18 Jun 1997 10:03:24 JST


Nick,

Sorry, this is my problem. Following line would not work right now.
This is just a small parsing problem.

> a=new int*[n];

As a work around, please do following,

a=(int*)malloc(sizeof(int*)*n);
a=(int*)new long[n];

Masaharu Goto