Max Yaffe
Max Yaffe

Reputation: 1358

VS2010 Default Basic Runtime Checks

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

Answers (1)

Vinnie Falco
Vinnie Falco

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

Related Questions