Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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()
{
}