forked from premiere/premiere-libtorrent
fixed correct export macros for intrusive pointer refcounter functions
This commit is contained in:
parent
66437229e1
commit
1c147018db
|
@ -100,8 +100,8 @@ namespace libtorrent
|
||||||
: public boost::noncopyable
|
: public boost::noncopyable
|
||||||
{
|
{
|
||||||
friend class invariant_access;
|
friend class invariant_access;
|
||||||
friend void intrusive_ptr_add_ref(peer_connection const*);
|
friend TORRENT_EXPORT void intrusive_ptr_add_ref(peer_connection const*);
|
||||||
friend void intrusive_ptr_release(peer_connection const*);
|
friend TORRENT_EXPORT void intrusive_ptr_release(peer_connection const*);
|
||||||
public:
|
public:
|
||||||
|
|
||||||
enum channels
|
enum channels
|
||||||
|
|
|
@ -154,8 +154,8 @@ namespace libtorrent
|
||||||
struct TORRENT_EXPORT timeout_handler
|
struct TORRENT_EXPORT timeout_handler
|
||||||
: boost::noncopyable
|
: boost::noncopyable
|
||||||
{
|
{
|
||||||
friend void intrusive_ptr_add_ref(timeout_handler const*);
|
friend TORRENT_EXPORT void intrusive_ptr_add_ref(timeout_handler const*);
|
||||||
friend void intrusive_ptr_release(timeout_handler const*);
|
friend TORRENT_EXPORT void intrusive_ptr_release(timeout_handler const*);
|
||||||
|
|
||||||
timeout_handler(asio::strand& str);
|
timeout_handler(asio::strand& str);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue