Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 748 Bytes

compiler-warning-level-3-c4619.md

File metadata and controls

24 lines (19 loc) · 748 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Warning (level 3) C4619
Compiler Warning (level 3) C4619
11/04/2016
C4619
C4619
701fea21-01aa-4bea-93d4-1cb8824170b0

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