mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-06 08:28:39 +00:00
intrusive_ptr_base fix
This commit is contained in:
parent
871d0d15c6
commit
1690fd846b
1 changed files with 2 additions and 1 deletions
|
@ -45,7 +45,8 @@ namespace libtorrent
|
||||||
intrusive_ptr_base(intrusive_ptr_base<T> const&)
|
intrusive_ptr_base(intrusive_ptr_base<T> const&)
|
||||||
: m_refs(0) {}
|
: m_refs(0) {}
|
||||||
|
|
||||||
intrusive_ptr_base& operator=(intrusive_ptr_base const& rhs) {}
|
intrusive_ptr_base& operator=(intrusive_ptr_base const& rhs)
|
||||||
|
{ return *this; }
|
||||||
|
|
||||||
friend void intrusive_ptr_add_ref(intrusive_ptr_base<T> const* s)
|
friend void intrusive_ptr_add_ref(intrusive_ptr_base<T> const* s)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue