diff --git a/panda/src/putil/ordered_vector.h b/panda/src/putil/ordered_vector.h index 6475fecbc4..547a6fda09 100644 --- a/panda/src/putil/ordered_vector.h +++ b/panda/src/putil/ordered_vector.h @@ -255,6 +255,9 @@ private: template > class ov_set : public ordered_vector { public: + typedef ordered_vector::ITERATOR ITERATOR; + typedef ordered_vector::VALUE_TYPE VALUE_TYPE; + INLINE ov_set(const Compare &compare = Compare()); INLINE ov_set(const ov_set ©); INLINE ov_set &operator = (const ov_set ©); @@ -275,6 +278,9 @@ public: template > class ov_multiset : public ordered_vector { public: + typedef ordered_vector::ITERATOR ITERATOR; + typedef ordered_vector::VALUE_TYPE VALUE_TYPE; + INLINE ov_multiset(const Compare &compare = Compare()); INLINE ov_multiset(const ov_multiset ©); INLINE ov_multiset &operator = (const ov_multiset ©);