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.
nonstandard extension used : long float
Remarks
The default Microsoft extensions (/Ze) treat long float as double. ANSI compatibility (/Za) does not. Use double to maintain compatibility.
Example
The following example generates C4215:
// C4215.cpp
// compile with: /W1 /LD
long float a; // C4215
// use the line below to resolve the warning
// double a;