Compiler Warning (level 1) C4224
Visual Studio 2015
The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.
The latest version of this topic can be found at Compiler Warning (level 1) C4224.
nonstandard extension used : formal parameter 'identifier' was previously defined as a type
The identifier was previously used as a typedef. This causes a warning under ANSI compatibility (/Za).
// C4224.cpp // compile with: /Za /W1 /LD typedef int I; void func ( int I ); // C4224
Show: