View | Details | Raw Unified | Return to issue 3476
Collapse All | Expand All

(-)sal/inc/sal/types.h (-1 / +1 lines)
Lines 177-183 Link Here
177
   lack RTTI support, dynamic_cast is not included here).
177
   lack RTTI support, dynamic_cast is not included here).
178
*/
178
*/
179
#ifdef __cplusplus
179
#ifdef __cplusplus
180
#if defined SAL_W32 || defined SOLARIS || defined LINUX || defined MACOSX || defined FREEBSD || defined NETBSD
180
#if defined SAL_W32 || defined SOLARIS || defined LINUX || defined MACOSX || defined FREEBSD || defined NETBSD || defined IRIX
181
#define SAL_CONST_CAST(type, expr) (const_cast< type >(expr))
181
#define SAL_CONST_CAST(type, expr) (const_cast< type >(expr))
182
#define SAL_REINTERPRET_CAST(type, expr) (reinterpret_cast< type >(expr))
182
#define SAL_REINTERPRET_CAST(type, expr) (reinterpret_cast< type >(expr))
183
#define SAL_STATIC_CAST(type, expr) (static_cast< type >(expr))
183
#define SAL_STATIC_CAST(type, expr) (static_cast< type >(expr))

Return to issue 3476