|
@@ -226,7 +226,7 @@ p() const {
|
|
|
template<class T>
|
|
template<class T>
|
|
|
INLINE ThreadSafeConstPointerTo<T> &ThreadSafeConstPointerTo<T>::
|
|
INLINE ThreadSafeConstPointerTo<T> &ThreadSafeConstPointerTo<T>::
|
|
|
operator = (const To *ptr) {
|
|
operator = (const To *ptr) {
|
|
|
- reassign((To *)ptr);
|
|
|
|
|
|
|
+ this->reassign((To *)ptr);
|
|
|
return *this;
|
|
return *this;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -238,7 +238,7 @@ operator = (const To *ptr) {
|
|
|
template<class T>
|
|
template<class T>
|
|
|
INLINE ThreadSafeConstPointerTo<T> &ThreadSafeConstPointerTo<T>::
|
|
INLINE ThreadSafeConstPointerTo<T> &ThreadSafeConstPointerTo<T>::
|
|
|
operator = (const ThreadSafePointerTo<T> ©) {
|
|
operator = (const ThreadSafePointerTo<T> ©) {
|
|
|
- reassign((const ThreadSafePointerToBase<T> &)copy);
|
|
|
|
|
|
|
+ this->reassign((const ThreadSafePointerToBase<T> &)copy);
|
|
|
return *this;
|
|
return *this;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -250,6 +250,6 @@ operator = (const ThreadSafePointerTo<T> ©) {
|
|
|
template<class T>
|
|
template<class T>
|
|
|
INLINE ThreadSafeConstPointerTo<T> &ThreadSafeConstPointerTo<T>::
|
|
INLINE ThreadSafeConstPointerTo<T> &ThreadSafeConstPointerTo<T>::
|
|
|
operator = (const ThreadSafeConstPointerTo<T> ©) {
|
|
operator = (const ThreadSafeConstPointerTo<T> ©) {
|
|
|
- reassign((const ThreadSafePointerToBase<T> &)copy);
|
|
|
|
|
|
|
+ this->reassign((const ThreadSafePointerToBase<T> &)copy);
|
|
|
return *this;
|
|
return *this;
|
|
|
}
|
|
}
|