aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPer Larsson <[email protected]>2022-02-21 17:42:36 +0100
committerPer Larsson <[email protected]>2022-02-21 17:42:36 +0100
commitd81b187973922a95956beb0d517ceb52b35edf25 (patch)
treedeef8f44f78ba870ee17967387ce985fe1391114
parentAdded unhandled switch in websocket client. (diff)
parentAlign what GCC and Clang allow for switch cases to what MSVC allows (diff)
downloadzen-d81b187973922a95956beb0d517ceb52b35edf25.tar.xz
zen-d81b187973922a95956beb0d517ceb52b35edf25.zip
Merge branch 'main' of https://github.com/EpicGames/zen
-rw-r--r--xmake.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/xmake.lua b/xmake.lua
index 4d9b4e4b7..13092d7e3 100644
--- a/xmake.lua
+++ b/xmake.lua
@@ -68,6 +68,7 @@ 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-switch")
add_cxxflags("-Wno-unused-lambda-capture")
add_cxxflags("-Wno-unused-private-field")
add_cxxflags("-Wno-unused-value")