I am getting a lot of these warnings from 3rd party code that I cannot modify. Is there a way to disable this warning or at least disable it for certain areas (like #pragma push/pop in VC++)?

Example:

list.h:1122: warning: `list<LogOutput*, allocator<LogOutput*> >::node_alloc_' will be initialized after 
list.h:1117: warning:   `allocator<LogOutput*> list<LogOutput*, allocator<LogOutput*> >::alloc_'
link|improve this question

38% accept rate
Can you please post a couple of lines of the actual warnings? And also tell if this is C, C++, and if you have the source, if the warning comes from the linker or compilation process? – csl Oct 14 '09 at 8:15
feedback

3 Answers

up vote 21 down vote accepted

Make sure the members appear in the initializer list in the same order as they appear in the class

Class C {
   int a;
   int b;
   C():b(1),a(2){} //warning, should be C():a(2),b(1)
}

or you can turn -Wno-reorder

link|improve this answer
OP cannot modify the code. – Adam Rosenfield Dec 17 '10 at 4:41
feedback

You can disable it with -Wno-reorder.

link|improve this answer
feedback

use -Wno-reorder (man gcc is your friend :) )

link|improve this answer
1  
Wow, you found a new way to say RT_M: MIYF (man is your friend) If you don't mind, I am going to use it :) – Oren S Oct 14 '09 at 9:45
1  
Rather too close to an acronym that would not be acceptable at work for me. – Loki Astari Oct 14 '09 at 14:03
feedback

Your Answer

 
or
required, but never shown

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