From: Martin Quinson Date: Sun, 13 Sep 2015 10:41:53 +0000 (+0200) Subject: [MSVC] disable all 'POSIX name is deprecated' at once X-Git-Tag: v3_12~231 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/db6a637e93b0b8298aeff749d1b6b2796ded50ad?ds=sidebyside [MSVC] disable all 'POSIX name is deprecated' at once --- diff --git a/include/xbt/sysdep.h b/include/xbt/sysdep.h index d127bec37c..99f82a345d 100644 --- a/include/xbt/sysdep.h +++ b/include/xbt/sysdep.h @@ -72,7 +72,10 @@ XBT_PUBLIC(char *) bprintf(const char *fmt, ...) _XBT_GNUC_PRINTF(1, 2); */ #ifdef _MSC_VER /* Microsoft wants to improve the code quality blah blah blah */ +/* See: https://msdn.microsoft.com/en-us/library/8ef0s5kh.aspx */ + /* warning C4996: '_strdup': The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name: _strdup. */ +# define _CRT_NONSTDC_NO_WARNINGS # define strdup _strdup /* warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. */ # define _CRT_SECURE_NO_WARNINGS