mirror of
https://git.proxmox.com/git/libgit2
synced 2026-01-04 21:21:02 +00:00
Disable some msvc "deprecated function" warnings again
In addition to removing the inline #define, commit 209849a also
removed a #pragma to disable msvc deprecated function warnings.
Without this #pragma, msvc currently issues 19 warnings related
to "deprecated insecure c-library functions", such as strcpy()
and 22 warnings related to "deprecated POSIX function names",
such as open().
In order to supress these warnings, re-instate the #pragma.
Signed-off-by: Ramsay Jones <ramsay@ramsay1.demon.co.uk>
This commit is contained in:
parent
209849a449
commit
5cae6c2527
@ -46,4 +46,10 @@
|
||||
# define PRIuZ "Iu"
|
||||
#endif
|
||||
|
||||
/* Micosoft Visual C/C++ */
|
||||
#if defined(_MSC_VER)
|
||||
/* disable "deprecated function" warnings */
|
||||
# pragma warning ( disable : 4996 )
|
||||
#endif
|
||||
|
||||
#endif /* INCLUDE_compat_h__ */
|
||||
|
||||
Loading…
Reference in New Issue
Block a user