From 3b498e19199e0363f88f24a0742d3b72d1193751 Mon Sep 17 00:00:00 2001 From: David Rose Date: Mon, 25 Nov 2002 21:50:38 +0000 Subject: [PATCH] remove inappropriate TYPENAME's --- panda/src/express/ordered_vector.I | 2 +- panda/src/express/pointerTo.I | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/panda/src/express/ordered_vector.I b/panda/src/express/ordered_vector.I index 3df42a8081..c38cb3e687 100644 --- a/panda/src/express/ordered_vector.I +++ b/panda/src/express/ordered_vector.I @@ -309,7 +309,7 @@ operator >= (const ordered_vector &other) const { // the insert operation has taken place. //////////////////////////////////////////////////////////////////// template -INLINE TYPENAME pair::ITERATOR, bool> ordered_vector:: +INLINE pair::ITERATOR, bool> ordered_vector:: insert_unique(const TYPENAME ordered_vector::VALUE_TYPE &key) { ITERATOR position = find_insert_position(begin(), end(), key); #ifdef NDEBUG diff --git a/panda/src/express/pointerTo.I b/panda/src/express/pointerTo.I index 196a8b253e..ab9f31fa6b 100644 --- a/panda/src/express/pointerTo.I +++ b/panda/src/express/pointerTo.I @@ -366,7 +366,7 @@ p() const { // Description: //////////////////////////////////////////////////////////////////// template -INLINE TYPENAME PointerTo &PointerTo:: +INLINE PointerTo &PointerTo:: operator = (To *ptr) { reassign(ptr); return *this; @@ -378,7 +378,7 @@ operator = (To *ptr) { // Description: //////////////////////////////////////////////////////////////////// template -INLINE TYPENAME PointerTo &PointerTo:: +INLINE PointerTo &PointerTo:: operator = (const PointerTo ©) { reassign((const PointerToBase &)copy); return *this;