From 90e2d5ee769eeb699d4358221258d9689a30ec2f Mon Sep 17 00:00:00 2001 From: Ran Benita Date: Tue, 30 Mar 2021 20:08:42 +0300 Subject: build: require C11 I'd really like to use anonymous unions/structs. Supposedly even MSVC supports it now. Let's try and see. Signed-off-by: Ran Benita --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meson.build') diff --git a/meson.build b/meson.build index 18d16c0..2b0c8aa 100644 --- a/meson.build +++ b/meson.build @@ -3,7 +3,7 @@ project( 'c', version: '1.1.0', default_options: [ - 'c_std=c99', + 'c_std=c11', 'warning_level=2', 'b_lundef=true', ], -- cgit v1.2.1