From d959b98822c0213e17476b99247594f1e240f90d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Sun, 26 Apr 2020 19:39:08 +0200 Subject: [PATCH] meson: bump C standard to c18 --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 05128f70..98c804a6 100644 --- a/meson.build +++ b/meson.build @@ -3,7 +3,7 @@ project('foot', 'c', license: 'MIT', meson_version: '>=0.53.0', default_options: [ - 'c_std=c11', + 'c_std=c18', 'warning_level=1', 'werror=true', 'b_ndebug=if-release'])