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?
|
|
|
||
|
|
|
|
If you don't wont to pollute your source code (after all this warning presents only with Microsoft compiler) add Also you can define it just before you include a header file which generates this warning. You should add something like this
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. |
||
|
|
|
|
You can define the _CRT_SECURE_NO_WARNINGS symbol to suppress them and undefine it to reinstate them back. |
||
|
|
|
|
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. |
||||
|
|
|
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:
Then fix the remaining warnings by hand, by using the _s functions. |
||
|
|
|
|
hello, p.s. if you use only visual studio the secure template overloads could be a good solution. |
||
|
|
|
|
You could disable the warnings temporarily in places where they appear by using
so you don't disable all warnings, which can be harmful at times. |
||
|
|
