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.
empty statement at global scope
Remarks
A semicolon at global scope isn't preceded by a statement.
This warning may be fixed if you remove the extra semicolon.
Important
This warning only applies to C programs.
Example
The following example generates C4019:
// C4019.c
// compile with: /Za /W4
#define declint( varname ) int varname;
declint( a ); // C4019, int a;;
declint( b ) // OK, int b;
int main()
{
}