diff options
author | Tony Crisci <tony@dubstepdish.com> | 2017-12-01 05:42:12 -0500 |
---|---|---|
committer | Tony Crisci <tony@dubstepdish.com> | 2017-12-01 05:42:12 -0500 |
commit | 0f7a7f4084487d846100119b13b26a63ffe9b437 (patch) | |
tree | 6fbe75bcf96ffa11a37abe07ed6e008969859add | |
parent | 08954a0910efd712b211f8c13583020959188d2d (diff) | |
download | sway-0f7a7f4084487d846100119b13b26a63ffe9b437.tar.xz |
meson dont warn on unused param
-rw-r--r-- | meson.build | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meson.build b/meson.build index 05d92a91..695e237e 100644 --- a/meson.build +++ b/meson.build @@ -9,6 +9,8 @@ project( ], ) +add_project_arguments('-Wno-unused-parameter', language: 'c') + cc = meson.get_compiler('c') is_freebsd = host_machine.system().startswith('freebsd') |