diff options
| author | Martin Ridgers <[email protected]> | 2021-10-25 14:19:30 +0200 |
|---|---|---|
| committer | Martin Ridgers <[email protected]> | 2021-10-25 22:50:43 +0200 |
| commit | 91e3cecc0ca6d6b05ec9445b328001ae210779ac (patch) | |
| tree | f28bd15215ab46ad7ce514b9c07c2a93824d578b /xmake.lua | |
| parent | Added some ZEN_UNUSED() statements for yet-to-be-implemented functions (diff) | |
| download | zen-91e3cecc0ca6d6b05ec9445b328001ae210779ac.tar.xz zen-91e3cecc0ca6d6b05ec9445b328001ae210779ac.zip | |
Disabled unused-value warning as it fires at ZEN_UNUSED() sites
Diffstat (limited to 'xmake.lua')
| -rw-r--r-- | xmake.lua | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -52,6 +52,7 @@ end if is_os("linux") then add_cxxflags("-Wno-unused-variable") add_cxxflags("-Wno-unused-parameter") + add_cxxflags("-Wno-unused-value") add_cxxflags("-Wno-strict-aliasing") add_cxxflags("-Wno-implicit-fallthrough") add_cxxflags("-Wno-missing-field-initializers") |