How to turn this warning off?
Sergei Organov
osv@javad.com
Thu May 31 12:43:00 GMT 2007
Hello,
I can't find a command-line switch to turn off the following warning:
$ gcc -c warn.cc
warn.cc: In function 'void g(float)':
warn.cc:2: warning: passing 'float' for argument 1 to 'void f(int)'
$ cat warn.cc
extern void f(int);
void g(float x) { f(x); };
$ gcc -v
Using built-in specs.
Target: i486-linux-gnu
Configured with: [...]
Thread model: posix
gcc version 4.1.2 20061115 (prerelease) (Debian 4.1.1-21)
$
Any idea except filtering gcc output?
-- Sergei.
More information about the Gcc-help
mailing list