From 29b028076a9bc32bbec551651762a915f12cd10b Mon Sep 17 00:00:00 2001 From: Alexey Lapshin Date: Sat, 6 Jul 2024 00:26:41 +0700 Subject: [PATCH] feat(cxx): change test value of __cplusplus to 202302L --- .../system/cxx_build_test/main/test_cxx_standard.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/test_apps/system/cxx_build_test/main/test_cxx_standard.cpp b/tools/test_apps/system/cxx_build_test/main/test_cxx_standard.cpp index 0d6401a9cc..9431aef6a9 100644 --- a/tools/test_apps/system/cxx_build_test/main/test_cxx_standard.cpp +++ b/tools/test_apps/system/cxx_build_test/main/test_cxx_standard.cpp @@ -4,7 +4,7 @@ * SPDX-License-Identifier: Unlicense OR CC0-1.0 */ /* - * Current (2023-05-04) value for -std=gnu++23 and -std=gnu++2b. + * Current GCC-14.2.0 value for -std=gnu++23 and -std=gnu++2b. * If you change the C++ standard for IDF, you also need to change this. */ -static_assert(__cplusplus == 202100L); +static_assert(__cplusplus == 202302L);