view config.h.bot @ 2540:c3d634d49ce4

[project @ 1996-11-20 00:20:12 by jwe]
author jwe
date Wed, 20 Nov 1996 00:21:25 +0000
parents 6f7bb8b60579
children cfa9f35fd407
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 defined (__GNUC__)
#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ > 7)
#define NPOS string::npos
#endif
#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