mirror of
https://github.com/jezhiggins/arabica
synced 2025-01-15 15:40:56 +01:00
fixed typo in operator=
This commit is contained in:
parent
871d710312
commit
352478f76b
1 changed files with 2 additions and 2 deletions
|
@ -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=
|
||||
|
|
Loading…
Reference in a new issue