fixed typo in operator=

This commit is contained in:
jez_higgins 2005-08-05 21:39:14 +00:00
parent 871d710312
commit 352478f76b

View file

@ -31,8 +31,8 @@ public:
if(rhs == *this)
return *this;
unowned_ = rhs_.unowned_;
shared_ = rhs_.shared_;
unowned_ = rhs.unowned_;
shared_ = rhs.shared_;
return *this;
} // operator=