aboutsummaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorSimon Ser <contact@emersion.fr>2021-01-11 16:13:05 +0100
committerSimon Ser <contact@emersion.fr>2021-01-11 16:13:53 +0100
commit248b8e647adaeece886dc2fddf7dc74e085d1fbf (patch)
tree6360447f778a33d190ae56088752dbcfa35b68de /meson.build
parent4f80fab337f10b4ad2043b834606540895b8df36 (diff)
build: remove Clang workarounds
We have these disabled for all compilers anyways.
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build7
1 files changed, 0 insertions, 7 deletions
diff --git a/meson.build b/meson.build
index be1b8aa9..829fd8ae 100644
--- a/meson.build
+++ b/meson.build
@@ -89,13 +89,6 @@ conf_data.set10('WLR_HAS_XCB_ERRORS', false)
conf_data.set10('WLR_HAS_XCB_ICCCM', false)
conf_data.set10('WLR_HAS_XDG_FOREIGN', false)
-# Clang complains about some zeroed initializer lists (= {0}), even though they
-# are valid
-if cc.get_id() == 'clang'
- add_project_arguments('-Wno-missing-field-initializers', language: 'c')
- add_project_arguments('-Wno-missing-braces', language: 'c')
-endif
-
wayland_server = dependency('wayland-server', version: '>=1.18')
wayland_client = dependency('wayland-client')
wayland_protos = dependency('wayland-protocols', version: '>=1.17')