[Bug c++/31757] Name arguments in warnings when their names are known

2010-02-20 Thread manu at gcc dot gnu dot org
--- Comment #2 from manu at gcc dot gnu dot org 2010-02-20 18:59 --- Unfortunately, I have to agree with Wolfgang. We could do better with caret diagnostics but that is still far away. Sorry, closing as WONTFIX. -- manu at gcc dot gnu dot org changed: What|Removed

[Bug c++/31757] Name arguments in warnings when their names are known

2007-04-29 Thread bangerth at dealii dot org
--- Comment #1 from bangerth at dealii dot org 2007-04-30 00:01 --- I believe the current approach is pretty much the only thing that can be implemented reliably, because you could write code like this: --- int f(int i, int j); int f(int j, int i); int g = f(1,2); --