Go to the documentation of this file.
14 #ifndef STXXL_DEPRECATED_HEADER
15 #define STXXL_DEPRECATED_HEADER
21 #if STXXL_NO_DEPRECATED
23 #define STXXL_DEPRECATED(x) x
25 #define STXXL_DEPRECATED(x) __declspec(deprecated) x
26 #elif defined(__GNUG__) && ((__GNUC__ * 10000 + __GNUC_MINOR__ * 100) < 30400)
28 #define STXXL_DEPRECATED(x) x
30 #define STXXL_DEPRECATED(x) x __attribute__ ((__deprecated__))
33 #endif // !STXXL_DEPRECATED_HEADER