Compiler Warning (level 1) C4616
Visual Studio 2015
The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.
The latest version of this topic can be found at Compiler Warning (level 1) C4616.
pragma warning : warning number 'number' not a valid compiler warning
The warning number specified in the warning pragma cannot be reassigned. The pragma was ignored.
The following sample generates C4616:
// C4616.cpp // compile with: /W1 /c #pragma warning( disable : 0 ) // C4616 #pragma warning( disable : 999 ) // OK #pragma warning( disable : 4998 ) // OK
Show: