Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
'conversion' : truncation of constant value
Remarks
The type conversion causes a constant to exceed the space allocated for it. You may need to use a larger type for the constant.
Example
The following example generates C4309:
// C4309.cpp
// compile with: /W2
int main()
{
char c = 128; // C4309
}