Why does Visual Studio 2013 error on C4996?

C++Visual StudioVisual Studio-2013

C++ Problem Overview


In previous versions of Visual Studio using functions like _sleep or strncpy just outputs a warning. In the latest version, it's suddenly an error:

unexpected error

> error C4996: '_sleep': This function or variable has been superseded > by newer library or operating system functionality. Consider using > Sleep instead. See online help for details.

I know I can disable it by adding #pragma warning(disable: 4996) in the beginning of the code, but it's extremely annoying that VS is trying to force me to use other functions. Is there any way to disable this behavior?

Before you ask, "Treat Warnings As Errors" is disabled, and it errors even if I turn off all warnings!

C++ Solutions


Solution 1 - C++

Apparently new projects enable "SDK check" by default now, which treats these warnings as errors. To disable it, go to project properties -> Configuration Properties -> C/C++ -> General -> SDL checks -> No.

Solution 2 - C++

enter at the beginning of the program:

#pragma warning(disable : 4996)

and that's it.

Solution 3 - C++

You can also disable specific warning numbers in C/C++ > Advanced > Disable Specific Warnings.

Solution 4 - C++

Just to add to this, _CRT_NONSTDC_NO_DEPRECATE worked for me in VS2019. _CRT_SECURE_NO_WARNINGS alone did not clear this for me (I have both defined).

Similar to the other answers, this may be added by right-clicking the project in Solution Explorer, Then going to Properties->Configuration Properties->C/C++->Preprocessor->Preprocessor Definitions->Edit... then adding the line _CRT_NONSTDC_NO_DEPRECATE.

Solution 5 - C++

Project ->project_name properties -> Configuration Properties -> C/C++ -> Preprocessor -> Preprocessor Definitions -> Edit... add line _CRT_SECURE_NO_WARNINGS

Solution 6 - C++

Compiling all sources I have referred:

https://stackoverflow.com/questions/16883037/remove-secure-warnings-crt-secure-no-warnings-from-projects-by-default-in-vis

kmcnamee's answer on https://stackoverflow.com/questions/22450423/how-to-use-use-crt-secure-no-warnings

Video that solved my problem. https://www.youtube.com/watch?v=qWxGZLjwKL0

Apparently, Security Development Lifecycle (SDL) recommended checks which include enabling additional secure code generation features and extra security-relevant warnings as errors.

The steps to solve this issue are:

1. Go to Project-> "your project name" Properties
2. Under Configuration Properties, go to C/C++
3. Under C/C++, go to Preprocessor 
4. Select Preprocessor Definitions and click on Edit from the dropdown menu
5. In the blank space fill out _CRT_SECURE_NO_WARNINGS

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionNikolaiView Question on Stackoverflow
Solution 1 - C++NikolaiView Answer on Stackoverflow
Solution 2 - C++ניתאי דרעיView Answer on Stackoverflow
Solution 3 - C++Peter TsengView Answer on Stackoverflow
Solution 4 - C++Travis VromanView Answer on Stackoverflow
Solution 5 - C++Adam G.View Answer on Stackoverflow
Solution 6 - C++xAditya3393View Answer on Stackoverflow