From ec806cd92aaf488b223a6f60693cc4c0b3492643 Mon Sep 17 00:00:00 2001 From: Eugene Kozlov Date: Sun, 17 Jul 2022 21:33:27 +0300 Subject: [PATCH] Fix missing namespace qualifier in TupleVecIter. --- include/EASTL/bonus/tuple_vector.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/EASTL/bonus/tuple_vector.h b/include/EASTL/bonus/tuple_vector.h index 7123c57f..07a35a23 100644 --- a/include/EASTL/bonus/tuple_vector.h +++ b/include/EASTL/bonus/tuple_vector.h @@ -340,13 +340,13 @@ struct TupleVecIterCompatible, TupleTypes> : // storing - and harmoniously updating on each modification - a full tuple of pointers to the tupleVec's data template struct TupleVecIter, Ts...> - : public iterator, eastl_size_t, tuple, tuple> + : public iterator, eastl_size_t, tuple, tuple> { private: typedef TupleVecIter, Ts...> this_type; typedef eastl_size_t size_type; - typedef iterator, eastl_size_t, tuple, tuple> iter_type; + typedef iterator, eastl_size_t, tuple, tuple> iter_type; template friend struct TupleVecIter;