Changed std::is_same to etl::is_same in struct type_list_is_unique (#1320)

Co-authored-by: John Wellbelove <john.wellbelove@etlcpp.com>
This commit is contained in:
John Wellbelove 2026-03-02 09:13:19 +00:00 committed by John Wellbelove
parent 87e70f57e8
commit 535faaa588

View File

@ -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<std::is_same<TTypeList, typename type_list_unique<TTypeList>::type>::value>
: etl::bool_constant<etl::is_same<TTypeList, typename type_list_unique<TTypeList>::type>::value>
{
ETL_STATIC_ASSERT((etl::is_type_list<TTypeList>::value), "TTypeList must be an etl::type_list");
};