Reputation: 1358
What is the default action in a VS2010 C/C++ Win32 project for the parameter "Basic Runtime Checks = Default". This can be found in the C/C++ - Code Generation property page. Thanks in advance. Max
Upvotes: 5
Views: 2680
Reputation: 5353
There are two types of Basic Runtime Checks:
1: Uninitialized variables 2: Corrupted stack frames
Choosing "Default" gives you no runtime checks. The choices in the dropdown are misleading.
Upvotes: 6