From 188e421503bffb876e91afa5902a47ed769e5d5d Mon Sep 17 00:00:00 2001 From: Christopher Dunn Date: Thu, 21 Dec 2017 01:03:10 -0600 Subject: [PATCH] -std=c++11 We set this is the Meson build to eliminate warnings, but c++0x should still work, at least for now. See #695 for discussion. --- meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/meson.build b/meson.build index 8daab9c78..f5573c04e 100644 --- a/meson.build +++ b/meson.build @@ -4,6 +4,7 @@ project( version : '1.8.4', default_options : [ 'buildtype=release', + 'cpp_std=c++11', 'warning_level=1'], license : 'Public Domain', meson_version : '>= 0.41.1')