Location:
e32def.h
Link against:
STATIC_CAST(type,exp) (static_cast<type>(exp))
STATIC_CAST(type,exp) ((type)(exp))
Supported from 5.0
Static cast macro — deprecated.
This macro was originally provided to supply static cast
functionality independent of the source compiler. It is now possible to use the
C++ static_cast
operator in either GCC or VC6, and developers
should do so in preference to using this macro.
|