> | >   math_hash.C:282: warning: initialization of negative value `-1' to
> | >                    `unsigned int'
> | 
> | This is a feature ;-)
> 
> Hardly... then it would be written "static_cast<unsigned int>(-1)" 

No. This is shorthand for

#ifdef WITH_WARNINGS
#warning initialization of negative value `-1' to `unsigned int'
#endif
static_cast<unsigned int>(-1);

Andre'

-- 
André Pönitz ............................................. [EMAIL PROTECTED]

Reply via email to