remove inappropriate TYPENAME's

This commit is contained in:
David Rose 2002-11-25 21:50:38 +00:00
parent 8624205412
commit 3b498e1919
2 changed files with 3 additions and 3 deletions

View File

@ -309,7 +309,7 @@ operator >= (const ordered_vector<Key, Compare> &other) const {
// the insert operation has taken place. // the insert operation has taken place.
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
template<class Key, class Compare> template<class Key, class Compare>
INLINE TYPENAME pair<TYPENAME ordered_vector<Key, Compare>::ITERATOR, bool> ordered_vector<Key, Compare>:: INLINE pair<TYPENAME ordered_vector<Key, Compare>::ITERATOR, bool> ordered_vector<Key, Compare>::
insert_unique(const TYPENAME ordered_vector<Key, Compare>::VALUE_TYPE &key) { insert_unique(const TYPENAME ordered_vector<Key, Compare>::VALUE_TYPE &key) {
ITERATOR position = find_insert_position(begin(), end(), key); ITERATOR position = find_insert_position(begin(), end(), key);
#ifdef NDEBUG #ifdef NDEBUG

View File

@ -366,7 +366,7 @@ p() const {
// Description: // Description:
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
template<class T> template<class T>
INLINE TYPENAME PointerTo<T> &PointerTo<T>:: INLINE PointerTo<T> &PointerTo<T>::
operator = (To *ptr) { operator = (To *ptr) {
reassign(ptr); reassign(ptr);
return *this; return *this;
@ -378,7 +378,7 @@ operator = (To *ptr) {
// Description: // Description:
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
template<class T> template<class T>
INLINE TYPENAME PointerTo<T> &PointerTo<T>:: INLINE PointerTo<T> &PointerTo<T>::
operator = (const PointerTo<T> &copy) { operator = (const PointerTo<T> &copy) {
reassign((const PointerToBase<T> &)copy); reassign((const PointerToBase<T> &)copy);
return *this; return *this;