Expand Minimize
This topic has not yet been rated - Rate this topic

Compiler Warning (level 1) C4077

Error Message

unknown check_stack option

The old form of the check_stack pragma is used with an unknown argument. The argument must be +, -, or empty.

The compiler ignores the pragma and leaves the stack checking unchanged.

Example

// C4077.cpp
// compile with: /W1 /LD
#pragma check_stack yes // C4077
#pragma check_stack +    // Correct old form
#pragma check_stack (on) // Correct new form
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.