Compiler Warning (level 1) C4606
Visual Studio 2005
Error Message
#pragma warning : 'warning_number' ignored; Code Analysis warnings are not associated with warning levelsFor 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