| gmacros.h | gmacros.h | |||
|---|---|---|---|---|
| skipping to change at line 110 | skipping to change at line 110 | |||
| #define G_GNUC_NO_INSTRUMENT | #define G_GNUC_NO_INSTRUMENT | |||
| #endif /* !__GNUC__ */ | #endif /* !__GNUC__ */ | |||
| #if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1) | #if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1) | |||
| #define G_GNUC_DEPRECATED \ | #define G_GNUC_DEPRECATED \ | |||
| __attribute__((__deprecated__)) | __attribute__((__deprecated__)) | |||
| #else | #else | |||
| #define G_GNUC_DEPRECATED | #define G_GNUC_DEPRECATED | |||
| #endif /* __GNUC__ */ | #endif /* __GNUC__ */ | |||
| #if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5) | ||||
| #define G_GNUC_DEPRECATED_FOR(f) \ | ||||
| __attribute__((deprecated("Use " #f " instead"))) | ||||
| #else | ||||
| #define G_GNUC_DEPRECATED_FOR(f) G_GNUC_DEPRECATED | ||||
| #endif /* __GNUC__ */ | ||||
| #if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 3) | #if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 3) | |||
| # define G_GNUC_MAY_ALIAS __attribute__((may_alias)) | # define G_GNUC_MAY_ALIAS __attribute__((may_alias)) | |||
| #else | #else | |||
| # define G_GNUC_MAY_ALIAS | # define G_GNUC_MAY_ALIAS | |||
| #endif | #endif | |||
| #if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4) | #if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4) | |||
| #define G_GNUC_WARN_UNUSED_RESULT \ | #define G_GNUC_WARN_UNUSED_RESULT \ | |||
| __attribute__((warn_unused_result)) | __attribute__((warn_unused_result)) | |||
| #else | #else | |||
| End of changes. 1 change blocks. | ||||
| 0 lines changed or deleted | 7 lines changed or added | |||
This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/ | ||||