mirror of
https://github.com/panda3d/panda3d.git
synced 2026-04-21 14:09:24 -05:00
work around archlinux compiler bug
This commit is contained in:
@@ -119,7 +119,7 @@ p() const {
|
||||
template<class T>
|
||||
INLINE NodePointerTo<T> &NodePointerTo<T>::
|
||||
operator = (To *ptr) {
|
||||
reassign(ptr);
|
||||
this->reassign(ptr);
|
||||
return *this;
|
||||
}
|
||||
#endif // CPPPARSER
|
||||
@@ -133,7 +133,7 @@ operator = (To *ptr) {
|
||||
template<class T>
|
||||
INLINE NodePointerTo<T> &NodePointerTo<T>::
|
||||
operator = (const NodePointerTo<T> ©) {
|
||||
reassign((const NodePointerToBase<T> &)copy);
|
||||
this->reassign((const NodePointerToBase<T> &)copy);
|
||||
return *this;
|
||||
}
|
||||
#endif // CPPPARSER
|
||||
@@ -261,7 +261,7 @@ p() const {
|
||||
template<class T>
|
||||
INLINE NodeConstPointerTo<T> &NodeConstPointerTo<T>::
|
||||
operator = (const To *ptr) {
|
||||
reassign((To *)ptr);
|
||||
this->reassign((To *)ptr);
|
||||
return *this;
|
||||
}
|
||||
#endif // CPPPARSER
|
||||
@@ -275,7 +275,7 @@ operator = (const To *ptr) {
|
||||
template<class T>
|
||||
INLINE NodeConstPointerTo<T> &NodeConstPointerTo<T>::
|
||||
operator = (const NodePointerTo<T> ©) {
|
||||
reassign((const NodePointerToBase<T> &)copy);
|
||||
this->reassign((const NodePointerToBase<T> &)copy);
|
||||
return *this;
|
||||
}
|
||||
#endif // CPPPARSER
|
||||
@@ -289,7 +289,7 @@ operator = (const NodePointerTo<T> ©) {
|
||||
template<class T>
|
||||
INLINE NodeConstPointerTo<T> &NodeConstPointerTo<T>::
|
||||
operator = (const NodeConstPointerTo<T> ©) {
|
||||
reassign((const NodePointerToBase<T> &)copy);
|
||||
this->reassign((const NodePointerToBase<T> &)copy);
|
||||
return *this;
|
||||
}
|
||||
#endif // CPPPARSER
|
||||
|
||||
Reference in New Issue
Block a user