From 899894f0f5fbb544e19d90222ae2a0311bde2e4d Mon Sep 17 00:00:00 2001 From: Christopher Dunn Date: Thu, 21 Dec 2017 01:22:40 -0600 Subject: [PATCH] -std=c++11 (#715) 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 8daab9c..f5573c0 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')