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 : bit field types other than int
Remarks
With the default Microsoft extensions (/Ze), bitfield structure members can be of any integer type.
Example
The following example generates C4214:
// C4214.c
// compile with: /W4
struct bitfields
{
unsigned short j:4; // C4214
};
int main()
{
}
Such bit fields are invalid under ANSI compatibility (/Za).