aboutsummaryrefslogtreecommitdiff
path: root/xmake.lua
diff options
context:
space:
mode:
authorMartin Ridgers <[email protected]>2022-01-07 12:58:29 +0100
committerMartin Ridgers <[email protected]>2022-01-07 13:03:11 +0100
commit83e9cfc0402dda8c77e9ea16cf6632219e83982d (patch)
tree799a79aa6ebd4dcbe0ea50c1b41de0ef4ff59eba /xmake.lua
parentCorrect implementation of Invocable concept (diff)
downloadzen-83e9cfc0402dda8c77e9ea16cf6632219e83982d.tar.xz
zen-83e9cfc0402dda8c77e9ea16cf6632219e83982d.zip
Sorted lists merge better
Diffstat (limited to 'xmake.lua')
-rw-r--r--xmake.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake.lua b/xmake.lua
index 03bc1ded5..cdea23779 100644
--- a/xmake.lua
+++ b/xmake.lua
@@ -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