The information in this article applies to:
SUMMARYIn situations where the so-called "old-style" or "K&R-type" function declarations are used, the C compiler does not generate a warning when formal parameters are declared twice, even if they are redeclared with different types. This is expected behavior because one of the declarations is ignored when this type of function declaration is used. If ANSI-style, prototyped function declarations are used, a warning will be generated for any redeclarations. MORE INFORMATIONThe following code sample demonstrates this redeclaration problem: Sample Code
Even when this code is compiled at warning level 4 (/W4), the redeclaration
of x does not generate any warnings--the compiler only warns that func1()
is using an old-style function declarator:
Microsoft is committed to the ANSI standard and no diagnostic-message changes are planned to accommodate inconsistencies arising from use of the old declaration style. The ANSI specification, in Section 3.9.5, page 96, states the following: The use of function definitions with separate parameter identifier and declaration lists (not prototype-format parameter type and identifier declarators) is an obsolescent feature.The code given above is invalid in a C++ module (.CPP extension). Additional query words: 8.00 8.00c 9.00
Keywords : kbCompiler kbVC100 kbVC150 kbVC200 kbVC400 kbVC500 kbVC600 |
Last Reviewed: July 1, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |