From d489190513c1ff5f5af8c9f7bd33488d07c7112c Mon Sep 17 00:00:00 2001 From: Benson Muite Date: Tue, 6 Jan 2026 09:25:55 +0300 Subject: [PATCH] ICU 75 needs C++17 Patch from Sam James https://bugs.gentoo.org/934471 --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2c5eea1a7..ff495e97e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -32,9 +32,9 @@ if (POLICY CMP0067) cmake_policy(SET CMP0067 NEW) endif(POLICY CMP0067) -# Try C++14, then fall back to C++11 and C++98. Used for feature tests +# Try C++17, then fall back to C++14, then C++11, and C++98. Used for feature tests # for optional features. -set(CMAKE_CXX_STANDARD 14) +set(CMAKE_CXX_STANDARD 17) # Use folders (for IDE project grouping) set_property(GLOBAL PROPERTY USE_FOLDERS ON)