1426
|
1 |
2445
|
2 #if defined (__GNUC__) |
|
3 #define GCC_ATTR_NORETURN __attribute__ ((__noreturn__)) |
|
4 #define GCC_ATTR_UNUSED __attribute__ ((__unused__)) |
1426
|
5 #else |
2445
|
6 #define GCC_ATTR_NORETURN |
|
7 #define GCC_ATTR_UNUSED |
|
8 #endif |
|
9 |
2497
|
10 #if defined (__GNUC__) |
2445
|
11 #if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ > 7) |
|
12 #define NPOS string::npos |
1426
|
13 #endif |
2497
|
14 #endif |
2005
|
15 |
2378
|
16 #define STATIC_CAST(T, E) (T) (E) |
|
17 |
|
18 #define DYNAMIC_CAST(T, E) (T) (E) |
|
19 |
|
20 #define REINTERPRET_CAST(T, E) (T) (E) |
|
21 |
2005
|
22 #define HEAVYWEIGHT_INDEXING 1 |