diff --git a/panda/src/putil/ordered_vector.I b/panda/src/putil/ordered_vector.I index e1e6d292ce..71418e921c 100644 --- a/panda/src/putil/ordered_vector.I +++ b/panda/src/putil/ordered_vector.I @@ -705,9 +705,9 @@ operator = (const ov_set ©) { // Description: Maps to insert_unique(). //////////////////////////////////////////////////////////////////// template -ordered_vector::ITERATOR ov_set:: -insert(ordered_vector::ITERATOR position, - const ordered_vector::VALUE_TYPE &key) { +ov_set::ITERATOR ov_set:: +insert(ov_set::ITERATOR position, + const ov_set::VALUE_TYPE &key) { return ordered_vector::insert_unique(position, key); } @@ -717,8 +717,8 @@ insert(ordered_vector::ITERATOR position, // Description: Maps to insert_unique(). //////////////////////////////////////////////////////////////////// template -INLINE pair::ITERATOR, bool> ov_set:: -insert(const ordered_vector::VALUE_TYPE &key) { +INLINE pair::ITERATOR, bool> ov_set:: +insert(const ov_set::VALUE_TYPE &key) { return ordered_vector::insert_unique(key); } @@ -786,9 +786,9 @@ operator = (const ov_multiset ©) { // Description: Maps to insert_nonunique(). //////////////////////////////////////////////////////////////////// template -ordered_vector::ITERATOR ov_multiset:: -insert(ordered_vector::ITERATOR position, - const ordered_vector::VALUE_TYPE &key) { +ov_multiset::ITERATOR ov_multiset:: +insert(ov_multiset::ITERATOR position, + const ov_multiset::VALUE_TYPE &key) { return ordered_vector::insert_nonunique(position, key); } @@ -798,8 +798,8 @@ insert(ordered_vector::ITERATOR position, // Description: Maps to insert_nonunique(). //////////////////////////////////////////////////////////////////// template -INLINE ordered_vector::ITERATOR ov_multiset:: -insert(const ordered_vector::VALUE_TYPE &key) { +INLINE ov_multiset::ITERATOR ov_multiset:: +insert(const ov_multiset::VALUE_TYPE &key) { return ordered_vector::insert_nonunique(key); }