From 1f967661fd045c32b889d20c2f79b3a676215295 Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Mon, 9 Jun 2025 19:34:06 -0700 Subject: [PATCH] fix compilation with newer gtest Newer gtest requires C++17. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 18a0c14..9314189 100644 --- a/meson.build +++ b/meson.build @@ -2,7 +2,7 @@ # SPDX-License-Identifier: MIT project('c-flags', 'c', - default_options: ['c_std=c99', 'cpp_std=c++14', 'warning_level=3'], + default_options: ['c_std=c99', 'cpp_std=c++17', 'warning_level=3'], version: '1.5.8', license: 'MIT')