mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-27 07:56:14 +01:00
Merge branch 'gmacros-h-support-clang-cl' into 'master'
gmacros.h: Add better support for clang-cl See merge request GNOME/glib!980
This commit is contained in:
commit
caaa131d8a
@ -581,7 +581,7 @@
|
|||||||
*
|
*
|
||||||
* Since: 2.2
|
* Since: 2.2
|
||||||
*/
|
*/
|
||||||
#if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1)
|
#if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1) || defined (__clang__)
|
||||||
#define G_GNUC_DEPRECATED __attribute__((__deprecated__))
|
#define G_GNUC_DEPRECATED __attribute__((__deprecated__))
|
||||||
#else
|
#else
|
||||||
#define G_GNUC_DEPRECATED
|
#define G_GNUC_DEPRECATED
|
||||||
@ -610,7 +610,7 @@
|
|||||||
*
|
*
|
||||||
* Since: 2.26
|
* Since: 2.26
|
||||||
*/
|
*/
|
||||||
#if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5)
|
#if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5) || defined (__clang__)
|
||||||
#define G_GNUC_DEPRECATED_FOR(f) \
|
#define G_GNUC_DEPRECATED_FOR(f) \
|
||||||
__attribute__((deprecated("Use " #f " instead")))
|
__attribute__((deprecated("Use " #f " instead")))
|
||||||
#else
|
#else
|
||||||
@ -629,7 +629,7 @@
|
|||||||
_Pragma ("GCC diagnostic ignored \"-Wdeprecated-declarations\"")
|
_Pragma ("GCC diagnostic ignored \"-Wdeprecated-declarations\"")
|
||||||
#define G_GNUC_END_IGNORE_DEPRECATIONS \
|
#define G_GNUC_END_IGNORE_DEPRECATIONS \
|
||||||
_Pragma ("GCC diagnostic pop")
|
_Pragma ("GCC diagnostic pop")
|
||||||
#elif defined (_MSC_VER) && (_MSC_VER >= 1500)
|
#elif defined (_MSC_VER) && (_MSC_VER >= 1500) && !defined (__clang__)
|
||||||
#define G_GNUC_BEGIN_IGNORE_DEPRECATIONS \
|
#define G_GNUC_BEGIN_IGNORE_DEPRECATIONS \
|
||||||
__pragma (warning (push)) \
|
__pragma (warning (push)) \
|
||||||
__pragma (warning (disable : 4996))
|
__pragma (warning (disable : 4996))
|
||||||
@ -938,7 +938,7 @@
|
|||||||
#define G_UNLIKELY(expr) (expr)
|
#define G_UNLIKELY(expr) (expr)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1)
|
#if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1) || defined (__clang__)
|
||||||
#define G_DEPRECATED __attribute__((__deprecated__))
|
#define G_DEPRECATED __attribute__((__deprecated__))
|
||||||
#elif defined(_MSC_VER) && (_MSC_VER >= 1300)
|
#elif defined(_MSC_VER) && (_MSC_VER >= 1300)
|
||||||
#define G_DEPRECATED __declspec(deprecated)
|
#define G_DEPRECATED __declspec(deprecated)
|
||||||
@ -946,7 +946,7 @@
|
|||||||
#define G_DEPRECATED
|
#define G_DEPRECATED
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5)
|
#if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5) || defined (__clang__)
|
||||||
#define G_DEPRECATED_FOR(f) __attribute__((__deprecated__("Use '" #f "' instead")))
|
#define G_DEPRECATED_FOR(f) __attribute__((__deprecated__("Use '" #f "' instead")))
|
||||||
#elif defined(_MSC_FULL_VER) && (_MSC_FULL_VER > 140050320)
|
#elif defined(_MSC_FULL_VER) && (_MSC_FULL_VER > 140050320)
|
||||||
#define G_DEPRECATED_FOR(f) __declspec(deprecated("is deprecated. Use '" #f "' instead"))
|
#define G_DEPRECATED_FOR(f) __declspec(deprecated("is deprecated. Use '" #f "' instead"))
|
||||||
@ -954,7 +954,7 @@
|
|||||||
#define G_DEPRECATED_FOR(f) G_DEPRECATED
|
#define G_DEPRECATED_FOR(f) G_DEPRECATED
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5)
|
#if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5) || defined (__clang__)
|
||||||
#define G_UNAVAILABLE(maj,min) __attribute__((deprecated("Not available before " #maj "." #min)))
|
#define G_UNAVAILABLE(maj,min) __attribute__((deprecated("Not available before " #maj "." #min)))
|
||||||
#elif defined(_MSC_FULL_VER) && (_MSC_FULL_VER > 140050320)
|
#elif defined(_MSC_FULL_VER) && (_MSC_FULL_VER > 140050320)
|
||||||
#define G_UNAVAILABLE(maj,min) __declspec(deprecated("is not available before " #maj "." #min))
|
#define G_UNAVAILABLE(maj,min) __declspec(deprecated("is not available before " #maj "." #min))
|
||||||
@ -1021,7 +1021,7 @@
|
|||||||
|
|
||||||
#ifndef __GI_SCANNER__
|
#ifndef __GI_SCANNER__
|
||||||
|
|
||||||
#ifdef __GNUC__
|
#if defined (__GNUC__) || defined (__clang__)
|
||||||
|
|
||||||
/* these macros are private */
|
/* these macros are private */
|
||||||
#define _GLIB_AUTOPTR_FUNC_NAME(TypeName) glib_autoptr_cleanup_##TypeName
|
#define _GLIB_AUTOPTR_FUNC_NAME(TypeName) glib_autoptr_cleanup_##TypeName
|
||||||
|
Loading…
Reference in New Issue
Block a user