struct bar { void bar1(const char* x=","); };
Produces the following when -overload is passed:
void(::bar::*TmpMemPtr_bar11)(const char * x ," )=&::bar::bar1;
The problem is probably the quoted comma is being interpreted as an argument separator
Anonymous
You seem to have CSS turned off. Please don't fill out this field.
Workaround is to overload the functions instead of using a default argument.
The problem is probably the quoted comma is being interpreted as an argument separator
Workaround is to overload the functions instead of using a default argument.