From 18dc0e56aedb9f999e26014735c36e181782759e Mon Sep 17 00:00:00 2001 From: Mahmoud Al-Qudsi Date: Sun, 27 Jun 2021 18:55:30 -0500 Subject: [PATCH] Bump project to C++11 in build system This is required for some of the std::atomic usages (from the recent patches) under macOS. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index d5f76c9..a1184c0 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('pevents', ['cpp'], - default_options: ['warning_level=3']) + default_options: ['warning_level=3', 'cpp_std=c++11']) args = [] if get_option('wfmo')