diff options
| author | Martin Ridgers <[email protected]> | 2022-02-04 11:26:33 +0100 |
|---|---|---|
| committer | Martin Ridgers <[email protected]> | 2022-02-04 11:26:33 +0100 |
| commit | 58342e8277577bcfd8a029382e569f3ef6335ed0 (patch) | |
| tree | 6953c8324bc1469a4bd66d079ef099839bd636bc /xmake.lua | |
| parent | Close connection if HTTP header parsing failed (diff) | |
| download | zen-58342e8277577bcfd8a029382e569f3ef6335ed0.tar.xz zen-58342e8277577bcfd8a029382e569f3ef6335ed0.zip | |
Disabled unused lambda-capture/local-variable warnings to lessen maintenance cost
Diffstat (limited to 'xmake.lua')
| -rw-r--r-- | xmake.lua | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -68,8 +68,10 @@ if is_os("linux") or is_os("macosx") then add_cxxflags("-Wno-implicit-fallthrough") add_cxxflags("-Wno-missing-field-initializers") add_cxxflags("-Wno-strict-aliasing") + add_cxxflags("-Wno-unused-lambda-capture") add_cxxflags("-Wno-unused-private-field") add_cxxflags("-Wno-unused-value") + add_cxxflags("-Wno-unused-variable") end -- Turn use of undefined cpp macros into errors |