From 6cddcbf35314cd691f5679d207f450d3e5e7c864 Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Mon, 11 Sep 2023 10:23:32 +0200 Subject: [PATCH] Build with C17 All supported platforms have compilers supporting C17. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index cc31a8b..5825881 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project('zathura', 'c', version: '0.5.2', meson_version: '>=0.61', - default_options: ['c_std=c11', 'warning_level=3'], + default_options: ['c_std=c17', 'warning_level=3'], ) version = meson.project_version()