mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-14 00:06:24 +01:00
Add MSVC implementations of G_GNUC_*_IGNORE_DEPRECATIONS
As Visual Studio 2008 and later have support for the __pragma keyword, where the compiler pragmas can be used in a macro, we can support G_GNUC_BEGIN_IGNORE_DEPRECATIONS and G_GNUC_END_IGNORE_DEPRECATIONS for Visual Studio 2008 and later, so many deprecation (C4996) warnings can be suppressed when using these compilers when we use these macros in the code. https://bugzilla.gnome.org/show_bug.cgi?id=704543
This commit is contained in:
parent
90da4ed628
commit
d0b4f59e8c
@ -120,6 +120,12 @@
|
||||
_Pragma ("GCC diagnostic ignored \"-Wdeprecated-declarations\"")
|
||||
#define G_GNUC_END_IGNORE_DEPRECATIONS \
|
||||
_Pragma ("GCC diagnostic pop")
|
||||
#elif defined (_MSC_VER) && (_MSC_VER >= 1500)
|
||||
#define G_GNUC_BEGIN_IGNORE_DEPRECATIONS \
|
||||
__pragma (warning (push)) \
|
||||
__pragma (warning (disable : 4996))
|
||||
#define G_GNUC_END_IGNORE_DEPRECATIONS \
|
||||
__pragma (warning (pop))
|
||||
#else
|
||||
#define G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||
#define G_GNUC_END_IGNORE_DEPRECATIONS
|
||||
|
Loading…
Reference in New Issue
Block a user