5
votes
1answer
101 views

Will casting away the parameters on a function pointer with default value parameters work?

I'm trying to call an overloaded function which operates on function pointers that have parameters with default values. void originalFunction1 (int a = 0) {printf("I'm #1 and a is %d",a);} void ...
15
votes
3answers
319 views

Are extern “C” functions a separate type?

From the C++11 draft, 7.5 (para. 1): Two function types with different language linkages are distinct types even if they are otherwise identical. So I can do overload based on language ...
2
votes
5answers
196 views

Overload a pointer to an overloaded function

If I try to define a pointer to an overloaded function void myprint(int ); void myprint(const char* ); void (*funpointer)(int) = myprint; the compiler understands that funpointer should point to ...