mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-25 15:06:14 +01:00
Bug 661438: Update msvc_recommended_pragmas.h
Don't disable warning C4996 as that is the Visual C++ warning triggered by __declspec(deprecated) and __declspec(deprecated('..."))-disabling that warning will defeat the purpose of G_DPRECATED/G_DEPRECATED_FOR. For people who don't want to see the GLib deprecation warnings during GLib compilation, define GLIB_DISABLE_DEPRECATION_WARNINGS in the projects or property sheet.
This commit is contained in:
parent
36ccdab760
commit
b93d6ab83a
@ -28,4 +28,5 @@
|
|||||||
#pragma warning(disable:4305) /* No truncation from int to char warnings */
|
#pragma warning(disable:4305) /* No truncation from int to char warnings */
|
||||||
|
|
||||||
/* work around Microsoft's premature attempt to deprecate the C-Library */
|
/* work around Microsoft's premature attempt to deprecate the C-Library */
|
||||||
#pragma warning(disable:4996) /* This function or variable may be unsafe. */
|
#define _CRT_SECURE_NO_WARNINGS
|
||||||
|
#define _CRT_NONSTDC_NO_WARNINGS
|
||||||
|
Loading…
Reference in New Issue
Block a user