vote up 0 vote down star

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_'
flag

17% 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 at 8:15

2 Answers

vote up 4 vote down

You can disable it with -Wno-reorder.

link|flag
vote up 2 vote down

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

link|flag
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 at 9:45
Rather too close to an acronym that would not be acceptable at work for me. – Martin York Oct 14 at 14:03

Your Answer

Get an OpenID
or

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