Skip to content

Commit

Permalink
Merge pull request #475 from eugeneko/ek/tuple-vec
Browse files Browse the repository at this point in the history
Fix missing namespace qualifier in TupleVector.
  • Loading branch information
grojo-ea authored Jul 25, 2022
2 parents ae8cc01 + ec806cd commit 46b5321
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/EASTL/bonus/tuple_vector.h
Original file line number Diff line number Diff line change
Expand Up @@ -340,13 +340,13 @@ struct TupleVecIterCompatible<TupleTypes<Us...>, TupleTypes<Ts...>> :
// storing - and harmoniously updating on each modification - a full tuple of pointers to the tupleVec's data
template <eastl_size_t... Indices, typename... Ts>
struct TupleVecIter<index_sequence<Indices...>, Ts...>
: public iterator<random_access_iterator_tag, tuple<Ts...>, eastl_size_t, tuple<Ts*...>, tuple<Ts&...>>
: public iterator<EASTL_ITC_NS::random_access_iterator_tag, tuple<Ts...>, eastl_size_t, tuple<Ts*...>, tuple<Ts&...>>
{
private:
typedef TupleVecIter<index_sequence<Indices...>, Ts...> this_type;
typedef eastl_size_t size_type;

typedef iterator<random_access_iterator_tag, tuple<Ts...>, eastl_size_t, tuple<Ts*...>, tuple<Ts&...>> iter_type;
typedef iterator<EASTL_ITC_NS::random_access_iterator_tag, tuple<Ts...>, eastl_size_t, tuple<Ts*...>, tuple<Ts&...>> iter_type;

template<typename U, typename... Us>
friend struct TupleVecIter;
Expand Down

0 comments on commit 46b5321

Please sign in to comment.