>     double d = 5.0;
>     int i = static_cast<int>d;
> 
> Anyone else?

Write this as 

  static_cast<int>(d)

and egcs will accept it.

Regards,
Martin

Reply via email to