From: Peter Johnson Date: Thu, 6 Dec 2007 05:46:02 +0000 (-0000) Subject: Turn off -Wconversion. It is far too noisy for it to be useful due to X-Git-Tag: v0.7.0~35 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ad072d5172b86ef8aff3b8ee726c88caf8268b26;p=yasm Turn off -Wconversion. It is far too noisy for it to be useful due to "passing arg X of `' with different width due to prototype" warnings. svn path=/trunk/yasm/; revision=2022 --- diff --git a/configure.ac b/configure.ac index f539d124..1bea5a2f 100644 --- a/configure.ac +++ b/configure.ac @@ -174,7 +174,7 @@ if test "$USE_MAINTAINER_MODE" = "yes"; then MORE_CFLAGS="$MORE_CFLAGS -Wcast-align" MORE_CFLAGS="$MORE_CFLAGS -Wcast-qual" MORE_CFLAGS="$MORE_CFLAGS -Wchar-subscripts" - MORE_CFLAGS="$MORE_CFLAGS -Wconversion" +# MORE_CFLAGS="$MORE_CFLAGS -Wconversion" # MORE_CFLAGS="$MORE_CFLAGS -Wdeclaration-after-statement" # MORE_CFLAGS="$MORE_CFLAGS -Wendif-labels" MORE_CFLAGS="$MORE_CFLAGS -Winline"