A Fix for this went since the last snapshot.
Thanks,
Andrew Pinski
On Friday, Aug 22, 2003, at 11:07 US/Eastern, Fons Rademakers wrote:
> class A {
> public:
> void Func(long l);
> void Func(double d);
> ...
> };
>
> void bla()
> {
> float f = 9.9;
> A a;
> a.Func(f);
> }