You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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 tofoo( char a, int b)
andfoo(char a)
, respectively.The text was updated successfully, but these errors were encountered: