SA Bugzilla – Bug 4855
Disable deprecated 'unsafe' function warnings on MSVC++ >= VC8+
Last modified: 2006-04-04 07:05:26 UTC
MS has created a bunch of new 'safe' CRT routines (with new names). The old 'unsafe' functions have been marked with a DEPRECATED keyword so they will generate a level 1 warnings unless _CRT_SECURE_NO_DEPRECATE is defined, or all deprecation warnings are turned off with "#pragma warning(disable : 4996)". Since the new MS functions are not cross platform (and probably never will be) these function warnings should be disabled. Greeting. NicoP.
Created attachment 3449 [details] Patch disables deprecated 'unsafe' function warnings
thanks Nico. r391293.