vote up 1 vote down star

What is the best way to disable the warnings generated via _CRT_SECURE_NO_DEPRECATE that allows them to be reinstated with ease and will work across Visual Studio versions?

flag

45% accept rate

6 Answers

vote up 5 vote down check

If you don't wont to pollute your source code (after all this warning presents only with Microsoft compiler) add _CRT_SECURE_NO_WARNINGS symbol to your project settings via "Project"->"Properties"->"Configuration properties"->"C/C++"->"Preprocessor"->"Preprocessor definitions".

Also you can define it just before you include a header file which generates this warning. You should add something like this

#ifdef _MSC_VER
#define _CRT_SECURE_NO_WARNINGS
#endif

And just a small remark, make sure you understand what this warning stands for and maybe if you don't intend to use other compilers then MSVC, consider using safer version of functions i.e. strcpy_s instead of strcpy.

link|flag
vote up 0 vote down

You can define the _CRT_SECURE_NO_WARNINGS symbol to suppress them and undefine it to reinstate them back.

link|flag
vote up 1 vote down

I'd like to point out that the warnings are actually there for a reason.

I'm not absolutely sure, but I believe the new, safer versions of the functions in question (CRT) exist in the new Windows SDK for older compilers as well. Moving to the new versions of functions is generally a good idea, since they're designed to better prevent overflows and other exploits.

link|flag
They happen to serve quite well as part of an "Embrace, Extend, Extinguish" policy, something that Microsoft has been accused of before. – MSalters Sep 23 '08 at 14:17
Extinguish the moldy old unsecure standard functions? Wouldn't that be a shame. Also, since we're talking about Windows dev here, it shouldn't matter two shits if the proto differs from posix. – psoul Oct 21 '08 at 9:36
vote up 2 vote down

You can also use the Secure Template Overloads, they will help you replace the unsecure calls with secure ones anywhere it is possible to easily deduce buffer size (static arrays).

Just add the following:

#define _CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES 1

Then fix the remaining warnings by hand, by using the _s functions.

link|flag
vote up 1 vote down

hello,
i work on a multi platform project, so i can't use _s function and i don't want pollute my code with visual studio specific code.
my solution is disable the warning 4996 on the visual studio project. go to Project -> Properties -> Configuration properties -> C/C++ -> Advanced -> Disable specific warning add the value 4996.
if you use also the mfc and/or atl library (not my case) define before include mfc _AFX_SECURE_NO_DEPRECATE and before include atl _ATL_SECURE_NO_DEPRECATE.
i use this solution across visual studio 2003 and 2005.

p.s. if you use only visual studio the secure template overloads could be a good solution.

link|flag
vote up 1 vote down

You could disable the warnings temporarily in places where they appear by using

#pragma warning(push)
#pragma warning(disable: warning-code)
// deprecated code here
#pragma warning(pop)

so you don't disable all warnings, which can be harmful at times.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.