This commit is contained in:
David Rose 2002-02-22 19:11:25 +00:00
parent f81078dd29
commit fca4e4ebfb
2 changed files with 2 additions and 2 deletions

View File

@ -850,7 +850,7 @@ insert(ordered_vector<Key, Compare>::iterator position,
// Description: Maps to insert_nonunique().
////////////////////////////////////////////////////////////////////
template<class Key, class Compare>
INLINE pair<ov_multiset<Key, Compare>::iterator, bool> ov_multiset<Key, Compare>::
INLINE ov_multiset<Key, Compare>::iterator ov_multiset<Key, Compare>::
insert(const ordered_vector<Key, Compare>::value_type &key) {
return ordered_vector::insert_nonunique(key);
}

View File

@ -231,7 +231,7 @@ public:
INLINE ov_multiset<Key, Compare> &operator = (const ov_multiset<Key, Compare> &copy);
INLINE iterator insert(iterator position, const value_type &key);
INLINE pair<iterator, bool> insert(const value_type &key);
INLINE iterator insert(const value_type &key);
INLINE void sort();
};