Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
#pragma warning : 'warning_number' ignored; Code Analysis warnings are not associated with warning levels
Remarks
For Code Analysis warnings, only error, once, and default are supported with the warning pragma.
Example
The following example generates C4606.
// C4606.cpp
// compile with: /c /W1
#pragma warning(1: 6001) // C4606
#pragma warning(once: 6001) // OK