Compiler Warning (level 1) C4224 (Windows CE 5.0)

Send Feedback

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

The following example shows how this message might occur.

typedef int I;
void func ( int I );  // warning

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.