From c38ab3e5d7d4b327f97ed0d63f4da4b6936dd9b6 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Wed, 30 Aug 2023 17:58:12 +0200 Subject: [PATCH] Move to c++17. All our compilers should handle c++17. Let's move on. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 555083f7a..fca77ecb4 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project('libkiwix', 'cpp', version : '12.1.0', license : 'GPLv3+', - default_options : ['c_std=c11', 'cpp_std=c++11', 'werror=true']) + default_options : ['c_std=c11', 'cpp_std=c++17', 'werror=true']) compiler = meson.get_compiler('cpp')