http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19165



Teodor Petrov <fuscated at gmail dot com> changed:



           What    |Removed                     |Added

----------------------------------------------------------------------------

                 CC|                            |fuscated at gmail dot com



--- Comment #15 from Teodor Petrov <fuscated at gmail dot com> 2013-01-30 
12:13:52 UTC ---

I'm speaking as one of Code::Blocks' developers:

If you implement this we'll for sure use it, because we have many complaints

similar to the one Eclipse's developers have. 



(After one such complaint I've found this bug, by the way).



Some suggestions: 

Don't pack the line/column info with the file name, if possible.

So the proposed diagnostic from this:

<diagnostic class="error"

location="/home/manuel/src/test/gcc/testsuite/gcc.dg/array-2.c:10:8">

inicializaci&#65533;n de un miembro de matriz flexible en un contexto anidado

</diagnostic>



will turn in to this, which will be easier to parse:

<diagnostic class="error"

location="/home/manuel/src/test/gcc/testsuite/gcc.dg/array-2.c" line="10"

column="8">

inicializaci&#65533;n de un miembro de matriz flexible en un contexto anidado

</diagnostic>



Also, if it is possible group the notes/instances info with the error/warning

messages. This way it will allows us to show the information in a better way.

Reply via email to