Which GCC warning must be disabled?
Posted
by SebastianK
on Stack Overflow
See other posts from Stack Overflow
or by SebastianK
Published on 2010-06-08T13:26:13Z
Indexed on
2010/06/08
13:32 UTC
Read the original article
Hit count: 310
Using GCC 3.3.6, I get the following warning:
choosing ... over ... because conversion sequence for the argument is better.
Now, I want to disable this warning as described in gcc warning options by providing an argument like
-Wno-theNameOfTheWarning
But I don't know the name of the warning. How can I find out the name of the option that disables this warning?
© Stack Overflow or respective owner