forked from premiere/premiere-libtorrent
warning fix
This commit is contained in:
parent
b3c40ea7e8
commit
8868469f2f
|
@ -745,7 +745,7 @@ namespace detail
|
||||||
int conn = m_connections.size();
|
int conn = m_connections.size();
|
||||||
#endif
|
#endif
|
||||||
(*m_connections.begin())->disconnect();
|
(*m_connections.begin())->disconnect();
|
||||||
TORRENT_ASSERT(conn == m_connections.size() + 1);
|
TORRENT_ASSERT(conn == int(m_connections.size()) + 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined(TORRENT_VERBOSE_LOGGING) || defined(TORRENT_LOGGING)
|
#if defined(TORRENT_VERBOSE_LOGGING) || defined(TORRENT_LOGGING)
|
||||||
|
|
Loading…
Reference in New Issue