23-07-2008, 04:26 PM
Hello,
does rule 2-10-5 disallows function overloading? What is the definition of "identifier reuse"?
For example:
does rule 2-10-5 disallows function overloading? What is the definition of "identifier reuse"?
For example:
Code:
class C{};
void foo(int);
void foo(C); // Not compliant?
void foo(int, C); // Not compliant?