view config.h.bot @ 2479:26e9ee533d87

[project @ 1996-11-07 17:46:14 by jwe]
author jwe
date Thu, 07 Nov 1996 17:49:07 +0000
parents 6577af9f7504
children 6f7bb8b60579
line wrap: on
line source


#if defined (__GNUC__)
#define GCC_ATTR_NORETURN __attribute__ ((__noreturn__))
#define GCC_ATTR_UNUSED __attribute__ ((__unused__))
#else
#define GCC_ATTR_NORETURN
#define GCC_ATTR_UNUSED
#endif

#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ > 7)
#define NPOS string::npos
#endif

#define STATIC_CAST(T, E) (T) (E)

#define DYNAMIC_CAST(T, E) (T) (E)

#define REINTERPRET_CAST(T, E) (T) (E)

#define HEAVYWEIGHT_INDEXING 1