Is 16.4 violated if 16.3 is?
Posted: Thu Oct 11, 2012 9: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: Select all
void f(int);
void f(int x){}