2
0
mirror of https://github.com/FWGS/xash3d-fwgs synced 2025-01-08 17:35:08 +01:00

wscript: disallow -Wparentheses

This commit is contained in:
Alibek Omarov 2019-07-13 23:26:19 +03:00
parent cedc1e0eb2
commit 8a4239d48d

View File

@ -139,6 +139,7 @@ def configure(conf):
'-Werror=implicit-function-declaration',
'-Werror=return-type',
'-Werror=int-conversion',
'-Werror=parentheses',
'-fvisibility=hidden',
],
'gcc': [
@ -147,6 +148,7 @@ def configure(conf):
'-Werror=implicit-function-declaration',
'-Werror=return-type',
'-Werror=int-conversion',
'-Werror=parentheses',
'-fvisibility=hidden',
]
},