Browse Source

build: Move -Wcast-qual to the extra_warnings

It amounts to about 1/2 of the warnings generated and does not help
spotting anything useful.
tags/n3.0
Luca Barbato 9 years ago
parent
commit
cb49bb10ca
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      configure

+ 1
- 1
configure View File

@@ -4649,13 +4649,13 @@ check_cflags -Wall
check_cflags -Wdisabled-optimization check_cflags -Wdisabled-optimization
check_cflags -Wpointer-arith check_cflags -Wpointer-arith
check_cflags -Wredundant-decls check_cflags -Wredundant-decls
check_cflags -Wcast-qual
check_cflags -Wwrite-strings check_cflags -Wwrite-strings
check_cflags -Wtype-limits check_cflags -Wtype-limits
check_cflags -Wundef check_cflags -Wundef
check_cflags -Wmissing-prototypes check_cflags -Wmissing-prototypes
check_cflags -Wstrict-prototypes check_cflags -Wstrict-prototypes
enabled extra_warnings && check_cflags -Winline enabled extra_warnings && check_cflags -Winline
enabled extra_warnings && check_cflags -Wcast-qual


check_disable_warning(){ check_disable_warning(){
warning_flag=-W${1#-Wno-} warning_flag=-W${1#-Wno-}


Loading…
Cancel
Save