11-10-2012, 08:23 PM
Given the following code:
Does this code violate rule #16.4, identifiers used in the declaration and definition of a function shall be identical? While the lack of a parameter name in the prototype violates #16.3, I am not sure if violating #16.4 is possible in that case.
Code:
void f(int);
void f(int x){}