Added missing 'typename' to type_list nth_type

This commit is contained in:
John Wellbelove 2026-01-21 11:26:14 +01:00
parent 2862b3b247
commit 01a0b63919

View File

@ -65,7 +65,7 @@ namespace etl
template <size_t Index, typename... TTypes>
struct nth_type<Index, etl::type_list<TTypes...>> : public nth_type<Index, TTypes...>
{
using nth_type<Index, TTypes...>::type;
using typename nth_type<Index, TTypes...>::type;
};
//***********************************