Compiler Warning (level 3) C4619
The latest version of this topic can be found at Compiler Warning (level 3) C4619.
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