Skip to content

Latest commit

 

History

History
28 lines (23 loc) · 810 Bytes

compiler-warning-level-2-c4302.md

File metadata and controls

28 lines (23 loc) · 810 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Warning (level 2) C4302
Compiler Warning (level 2) C4302
11/04/2016
C4302
C4302
f5e1c939-e134-4cca-ba1e-9b15a81549ae

Compiler Warning (level 2) C4302

'conversion' : truncation from 'type 1' to 'type 2'

The compiler detected a conversion from a larger type to a smaller type. Information may be lost.

This warning is off by default. See Compiler Warnings That Are Off by Default for more information.

The following sample generates C4302:

// C4302.cpp
// compile with: /W2
#pragma warning(default : 4302)
int main() {
   int i;
   char c = (char) &i;     // C4302
   short s = (short) &i;   // C4302
}