vote up 3 vote down star
2

Hi,

Here a code to demonstrate an annoying problem:

class A {
public:
    A():
    	m_b(1),
    	m_a(2)
    	{}
private:
    int m_a;
    int m_b;
};

This is an output on Console view:

make all 
Building file: ../test.cpp
Invoking: GCC C++ Compiler
g++ -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"test.d" -MT"test.d" -o"test.o" "../test.cpp"
../test.cpp: In constructor 'A::A()':
../test.cpp:9: warning: 'A::m_b' will be initialized after
../test.cpp:8: warning:   'int A::m_a'
../test.cpp:3: warning:   when initialized here
Finished building: ../test.cpp

The problem is that in Problems view I'll see 3 separate warnings (lines in output containing warning word), while indeed there're 4 lines in output describing a one problem.

Is there're something I'm missing?

Additional question. Maybe it's in Eclipse spirit, but is there a way to make Console view clickable as most IDE does (e.g. Visual Studio, emacs ...)

Thanks Dima

flag

47% accept rate
I'm a little surprised the console is not clickable in CDT as it is for Java, guess they have not come around to that yet. I don't have Eclipse with CDT installed right now so I can't check, but at the very least you could write a plug-in to solve the problem. – NomeN Nov 3 at 10:37

4 Answers

vote up 3 vote down

There are multiple lines in the warning because each line refers to a different line of code. The problem being warned about is what's happening to the m_b that's declared on line 9, it's because of the fact that m_a on line 8 is declared before m_b is, but it's caused by what's happening in your initializer list, which starts on line 3.

With gcc it's possible for warnings that aren't related to each other to appear one after the other (i.e., a bunch of unrelated stuff all wrong in main), so Eclipse can't tell from the output whether those are separate warnings or all related to the same issue.

link|flag
But the lines indeed are related. Each individual warning line doesn't give a clue what is the problem. For example line "../test.cpp:3: warning: when initialized here" - itself the line is non sense, since it's out of context. Also line "../test.cpp: In constructor 'A::A()':" which is part of the problem doesn't appear in "Problems" view at all – idimba Aug 2 at 14:26
1  
I also think that the CDT error parser could be more clever and see the relation (extracted by the indention of the warning messages after "warning:"). But it may also be a problem to visualize those related errors in the Eclipse IDE (which is originally designed to develop Java programs that may not have such related errors [I don't know]). I also find it hard to track those related errors in Eclipse... – rstevens Aug 2 at 16:00
idimba, perhaps my wording above was unclear. These three lines, which appear sequentially, are related; it is also possible for unrelated warnings to appear sequentially, so Eclipse can't tell the difference, and assumes they are separate warnings. As for the "In constructor..." line not appearing, the error parser probably isn't looking for that pattern. – Meredith L. Patterson Aug 2 at 23:12
1  
I understand that parser works as designed and that lines can be related or not related. The problem is in concept. The IDE gives us a tool to see errors in more convenient way, to sort them, etc. The problem is that coupling of gcc with the feature doesn't work well. So the question is how we should work with this "broken" feature - compilation output is not clickable, Problems view is sometimes messy. – idimba Aug 3 at 5:55
This is another example of CDT being heavily GCC-biased. Since GCC present errors as list of location+message pairs, CDT assumes that all other compilers behave like that. In the GCC case there is no possibility of being any smarter than just presenting all errors in a linear list, but other compilers with the possibility of actually relating errors in a meaningful way have no way of presenting that to the user. – JesperE Aug 3 at 7:17
show 3 more comments
vote up 0 vote down

I understand that eclipse can't tell if the compiler errors are related or not, but why does it have to sort them alphabetically? If it just kept it in the same order that they were found by the compiler then it would be fine:)

link|flag
This is not even close to an answer. Remember that StackOverflow (and its whole family) does not work like a forum. If you have a question post a question, if you like to comment upon a question add a comment to the question. Answers are for actual answers. (I think this blurb is most suited as a comment) – NomeN Nov 3 at 10:29
And to answer the question in there, you can sort the problems on its location in stead of alphabetically by clicking the 'location' header. (You'll see the arrow move to this header, clicking again will invert the sort) – NomeN Nov 3 at 10:32
Sorry just saw your answer. I looked for the add comment button on the previous answer and couldn't see it. Thanks for you response, I did find the sorting options in the end and it helps a lot but still effects the sorting within a file. – Tom Nov 3 at 12:08
vote up 0 vote down

Fields get initialised in the order they are declared in the class. The compiler is helping you by telling you that the constructor is initialising then in the wrong order. This can cause strange errors, if the order of initialization matters.

link|flag
vote up 0 vote down

Thanks David, but I think you may have misunderstood me. I was referring to the fact that the 'Problems' view in eclipse sorts the compiler errors alphabetically by default. As Dima was saying this causes problem with gcc error messages which are spread over two lines such as

1) error: 'such and such' is protected

2) within this context

as all the 'within this context' lines get separated from the variable they are referring to.

HOWEVER, I just found the option to change the sorting order of the compiler errors, the little downwards pointing triangle at the top of the view (only just worked out this is where you set the options for the view as I am new to eclipse). If you play around with this it will help but will still not be able stop errors in the same file from being jumbled (why isn't there an option just leave them as they were?)

Cheers, Tom

link|flag
I've done a little more research, and you are right, sorting on location removes the sort on file, and sorting on file garbles the location sort...stupid. However, in the preferences of the view there is a field "Creation Time" that is hidden by default, make this visible and sort on this field will sort the problems by the time they were encountered during compilation and thus also per file. One caveat, problems from older compilations may not be listed with the problems from newer compilations. But this won't be a problem if you work neatly and remove all problems before recompiling. – NomeN Nov 3 at 14:04

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.