Skip to content

Latest commit

 

History

History
22 lines (19 loc) · 529 Bytes

compiler-warning-level-3-c4310.md

File metadata and controls

22 lines (19 loc) · 529 Bytes
description title ms.date f1_keywords helpviewer_keywords
Learn more about: Compiler Warning (level 4) C4310
Compiler Warning (level 4) C4310
10/17/2023
C4310
C4310

Compiler Warning (level 4) C4310

cast truncates constant value

A constant value is cast to a smaller type. The compiler performs the cast, which truncates data. The following sample generates C4310:

// C4310.cpp
// compile with: /W4
int main()
{
   long int a;
   a = (char) 128;   // C4310, use value 0-127 to resolve
}