From b51dd4ade024ed6fac800f40cf1ece0581562685 Mon Sep 17 00:00:00 2001 From: Gerard Marull-Paretas Date: Wed, 26 Jul 2023 13:16:31 +0200 Subject: [PATCH] lib: hash: use new c++ Kconfig symbols SYS_HASH_MAP_CXX was using deprecated C++ symbols. Signed-off-by: Gerard Marull-Paretas --- lib/hash/Kconfig.hash_map | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/hash/Kconfig.hash_map b/lib/hash/Kconfig.hash_map index dfbe9e8a82..d36a4e1245 100644 --- a/lib/hash/Kconfig.hash_map +++ b/lib/hash/Kconfig.hash_map @@ -39,9 +39,9 @@ config SYS_HASH_MAP_OA_LP config SYS_HASH_MAP_CXX bool "C++ Hashmap" - select CPLUSPLUS - select LIB_CPLUSPLUS - select EXCEPTIONS + select CPP + select REQUIRES_FULL_LIBCPP + select CPP_EXCEPTIONS help This enables a C wrapper around the C++ std::unordered_map.