http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24985
--- Comment #42 from Richard Guenther <rguenth at gcc dot gnu.org> 2012-04-13
12:08:02 UTC ---
(In reply to comment #40)
> I think what Jonathan proposed in comment #37 is also nice. If Jason approves,
> I will implement it.
Yes, I like that, too. For reference, the following:
note: candidate 'void f()' expects 0 arguments, 1 provided
void f(); void f(int,int);
^
note: candidate 'void f(int, int)' expects 2 arguments, 1 provided
void f(); void f(int,int);
^
I'll approve a patch that implements this.