Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 693 Bytes

compiler-warning-level-1-c4616.md

File metadata and controls

23 lines (19 loc) · 693 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Warning (level 1) C4616
Compiler Warning (level 1) C4616
11/04/2016
C4616
C4616
71e15265-c5bc-42ce-a6a9-4879892472b1

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