mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-03 02:15:43 -04:00
remove inappropriate TYPENAME's
This commit is contained in:
parent
8624205412
commit
3b498e1919
@ -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
|
||||||
|
@ -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> ©) {
|
operator = (const PointerTo<T> ©) {
|
||||||
reassign((const PointerToBase<T> &)copy);
|
reassign((const PointerToBase<T> &)copy);
|
||||||
return *this;
|
return *this;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user