diff --git a/include/EASTL/array.h b/include/EASTL/array.h index 218170c6..dce1ae82 100644 --- a/include/EASTL/array.h +++ b/include/EASTL/array.h @@ -617,7 +617,7 @@ namespace eastl struct tuple_element {}; template - struct tuple_element> { + struct tuple_element> { using type = T; }; } diff --git a/include/EASTL/internal/type_transformations.h b/include/EASTL/internal/type_transformations.h index cacf0b39..9e888bd2 100644 --- a/include/EASTL/internal/type_transformations.h +++ b/include/EASTL/internal/type_transformations.h @@ -497,7 +497,7 @@ namespace eastl namespace internal { template - auto try_add_pointer(int) -> type_identity::type*>; + auto try_add_pointer(int) -> type_identity::type*>; template auto try_add_pointer(...) -> type_identity; } diff --git a/include/EASTL/span.h b/include/EASTL/span.h index ef2a1351..b0bbee2d 100644 --- a/include/EASTL/span.h +++ b/include/EASTL/span.h @@ -63,7 +63,7 @@ namespace eastl struct is_eastl_array : public eastl::false_type {}; template - struct is_eastl_array, T> : public eastl::true_type {}; + struct is_eastl_array, T> : public eastl::true_type {}; } template