Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 675 Bytes

compiler-warning-level-4-c4211.md

File metadata and controls

28 lines (22 loc) · 675 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Warning (level 4) C4211
Compiler Warning (level 4) C4211
11/04/2016
C4211
C4211
3eea3455-6faa-4cdb-8730-73db7026bd1f

Compiler Warning (level 4) C4211

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).