fix to typo

This commit is contained in:
David Rose 2010-04-07 22:54:26 +00:00
parent f7b9b5144d
commit 481aa0d8ec
1 changed files with 1 additions and 1 deletions

View File

@ -334,6 +334,6 @@ operator = (const WeakPointerTo<T> &copy) {
template<class T>
INLINE WeakConstPointerTo<T> &WeakConstPointerTo<T>::
operator = (const WeakConstPointerTo<T> &copy) {
((WeakConstPointerTo<T> *)this)->assign((const PointerToBase<T> &)copy);
((WeakConstPointerTo<T> *)this)->reassign((const PointerToBase<T> &)copy);
return *this;
}