Expand Minimize
0 out of 1 rated this helpful - Rate this topic

Compiler Warning (level 1) C4606

Error Message

#pragma warning : 'warning_number' ignored; Code Analysis warnings are not associated with warning levels

For Code Analysis warnings, only error, once, and default are supported with the warning pragma.

Example

The following sample generates C4606.

// C4606.cpp
// compile with: /c /W1
#pragma warning(1: 6001)   // C4606
#pragma warning(once: 6001)   // OK
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.