From a58f764b8b1af1d2bc737ff22702dea2c58305e0 Mon Sep 17 00:00:00 2001 From: David Rose Date: Wed, 15 May 2002 18:45:24 +0000 Subject: [PATCH] compiler support for egcs-2.91.66 --- panda/src/putil/ordered_vector.h | 6 ++++++ 1 file changed, 6 insertions(+) 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 ©);