Compiler Warning (level 3) C4619
Visual Studio 2005
Error Message
#pragma warning : there is no warning number 'number'An attempt was made to disable a warning that does not exist.
This warning is off by default. See Compiler Warnings That Are Off by Default for more information.
The following sample generates C4619:
// C4619.cpp // compile with: /W3 /c #pragma warning(default : 4619) #pragma warning(disable : 4354) // C4619, C4354 does not exist