Compiler Warning (level 4) C4019

empty statement at global scope

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

// C4019.c
// compile with: /Za /W4
#define declint( varname ) int varname;
declint( a );   // C4019, int a;;
declint( b )   // OK, int b;

int main()
{
}