Skip to content

Commit

Permalink
remove accidental references to std library (#513)
Browse files Browse the repository at this point in the history
  • Loading branch information
jhopkins-ea committed Jul 5, 2023
1 parent c6141b9 commit a514949
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion include/EASTL/array.h
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,7 @@ namespace eastl
struct tuple_element {};

template<size_t I, typename T, size_t N>
struct tuple_element<I, T, N, std::enable_if_t<(I < N)>> {
struct tuple_element<I, T, N, eastl::enable_if_t<(I < N)>> {
using type = T;
};
}
Expand Down
2 changes: 1 addition & 1 deletion include/EASTL/internal/type_transformations.h
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ namespace eastl
namespace internal
{
template <typename T>
auto try_add_pointer(int) -> type_identity<typename std::remove_reference<T>::type*>;
auto try_add_pointer(int) -> type_identity<typename eastl::remove_reference<T>::type*>;
template <typename T>
auto try_add_pointer(...) -> type_identity<T>;
}
Expand Down
2 changes: 1 addition & 1 deletion include/EASTL/span.h
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ namespace eastl
struct is_eastl_array : public eastl::false_type {};

template<typename T, size_t N>
struct is_eastl_array<std::array<T, N>, T> : public eastl::true_type {};
struct is_eastl_array<eastl::array<T, N>, T> : public eastl::true_type {};
}

template <typename T, size_t Extent = eastl::dynamic_extent>
Expand Down

0 comments on commit a514949

Please sign in to comment.