fixed compile warning

This commit is contained in:
Arvid Norberg 2007-09-17 10:00:08 +00:00
parent e51d9b9590
commit bc897ef808
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ namespace libtorrent
template<class T>
struct intrusive_ptr_base
{
intrusive_ptr_base(const intrusive_ptr_base<T>& b)
intrusive_ptr_base(intrusive_ptr_base<T> const&)
: m_refs(0) {}
friend void intrusive_ptr_add_ref(intrusive_ptr_base<T> const* s)