Re: Cint

Jarek Grebieszkow (frodo@ikf.uni-frankfurt.de)
Fri, 7 Mar 1997 16:30:01 +0100 (MET)


On Fri, 7 Mar 1997, Fons Rademakers wrote:

> Hi Jarek,
>
> formally what you do is not correct C++. f is first defined as
> a pointer to a TFile and then in the same scope it is redefined

sure but Cint doesn't obey C++ standards as well. Name scope in Cint
is not quite clear for me, i.e I can do in C++
{
TFile *f=...

delete f;
}
TFile f;
but Cint crashes when I try to do the same thing. That was my point,
may be my previous example wasn't exactly correct.

Jarek