fficxx
fficxx copied to clipboard
Auto-function generation for default parameters
funcitons with default parameters like int foo( char a, int b=0, bool=true ) had better be handled automatically. Currently, it is just manually handled with alias.
Suggestion is foo_, foo__ bound to foo( char a, int b) and foo(char a), respectively.