From 25c9235cbc1901b4911f5a15e2cdf9f578dc9231 Mon Sep 17 00:00:00 2001 From: John Wellbelove Date: Mon, 2 Mar 2026 09:13:19 +0000 Subject: [PATCH] Changed std::is_same to etl::is_same in struct type_list_is_unique (#1320) Co-authored-by: John Wellbelove --- include/etl/type_list.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/etl/type_list.h b/include/etl/type_list.h index 1afd55f0..f87d97c6 100644 --- a/include/etl/type_list.h +++ b/include/etl/type_list.h @@ -653,7 +653,7 @@ namespace etl struct type_list_is_unique // Create a unique version of the type list, and check if it is the same as the original list. // If they are the same, then all types in the original list are unique. - : etl::bool_constant::type>::value> + : etl::bool_constant::type>::value> { ETL_STATIC_ASSERT((etl::is_type_list::value), "TTypeList must be an etl::type_list"); };