Nota
L-aċċess għal din il-paġna jeħtieġ l-awtorizzazzjoni. Tista’ tipprova tidħol jew tibdel id-direttorji.
L-aċċess għal din il-paġna jeħtieġ l-awtorizzazzjoni. Tista’ tipprova tibdel id-direttorji.
'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
}