meson: default to c11

We don't need any C18 specifics, so C11 is also fine and more widely
supported (i. e. in older clang versions).
This commit is contained in:
sterni 2020-12-20 16:43:42 +01:00 committed by Daniel Eklöf
parent 82d9fd9219
commit 5987b7c85f
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

@ -3,7 +3,7 @@ project('foot', 'c',
license: 'MIT',
meson_version: '>=0.53.0',
default_options: [
'c_std=c18',
'c_std=c11',
'warning_level=1',
'werror=true',
'b_ndebug=if-release'])