Browse Source

wscript: disable treating uninitialized as error because it gives too much false-positives

pull/2/head
Alibek Omarov 4 years ago
parent
commit
64a96b26ad
  1. 3
      wscript

3
wscript

@ -271,7 +271,8 @@ def configure(conf): @@ -271,7 +271,8 @@ def configure(conf):
'-Werror=duplicated-branches', # BEWARE: buggy
'-Werror=bool-compare',
'-Werror=bool-operation',
'-Werror=uninitialized',
'-Wuninitialized', # older GCC versions have -Wmaybe-uninitialized enabled by this switch, which is not accurate
# so just warn, not error
'-Winit-self',
'-Werror=implicit-fallthrough=2', # clang incompatible without "=2"
# '-Wdouble-promotion', # disable warning flood

Loading…
Cancel
Save