Expand Minimize
0 out of 1 rated this helpful - Rate this topic

Compiler Warning (level 4) C4211

Error Message

nonstandard extension used : redefined extern to static

With the default Microsoft extensions (/Ze), you can redefine an extern identifier as static.

Example

// C4211.c
// compile with: /W4
extern int i;
static int i;   // C4211

int main()
{
}

Such redefinitions are invalid under ANSI compatibility (/Za).

See Also

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.