2
0
mirror of https://github.com/FWGS/xash3d-fwgs synced 2024-11-25 11:19:59 +01:00

wscript: don't error if uninitialized(old compilers like gcc5 have bad heuristics)

This commit is contained in:
Alibek Omarov 2019-12-24 03:56:07 +03:00
parent 5d8b770e6c
commit 32eb42a92f

View File

@ -236,8 +236,8 @@ def configure(conf):
'-Werror=duplicated-branches', # BEWARE: buggy
'-Werror=bool-compare',
'-Werror=bool-operation',
'-Werror=uninitialized',
'-Werror=init-self',
'-Wuninitialized',
'-Winit-self',
'-Werror=implicit-fallthrough=2', # clang incompatible without "=2"
# '-Wdouble-promotion', # disable warning flood
'-Wstrict-aliasing',