diff options
| author | Martin Ridgers <[email protected]> | 2022-01-07 12:58:29 +0100 |
|---|---|---|
| committer | Martin Ridgers <[email protected]> | 2022-01-07 13:03:11 +0100 |
| commit | 83e9cfc0402dda8c77e9ea16cf6632219e83982d (patch) | |
| tree | 799a79aa6ebd4dcbe0ea50c1b41de0ef4ff59eba /xmake.lua | |
| parent | Correct implementation of Invocable concept (diff) | |
| download | zen-83e9cfc0402dda8c77e9ea16cf6632219e83982d.tar.xz zen-83e9cfc0402dda8c77e9ea16cf6632219e83982d.zip | |
Sorted lists merge better
Diffstat (limited to 'xmake.lua')
| -rw-r--r-- | xmake.lua | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -58,10 +58,10 @@ if is_os("windows") then end if is_os("linux") or is_os("macosx") then - add_cxxflags("-Wno-unused-value") - add_cxxflags("-Wno-strict-aliasing") add_cxxflags("-Wno-implicit-fallthrough") add_cxxflags("-Wno-missing-field-initializers") + add_cxxflags("-Wno-strict-aliasing") + add_cxxflags("-Wno-unused-value") end -- Turn use of undefined cpp macros into errors |