minor lint oriented cleanup and refactor in headers
This commit is contained in:
parent
670c8a82ad
commit
f0cd6492bd
|
@ -188,7 +188,7 @@ namespace aux {
|
|||
return refcount == 0
|
||||
&& piece_refcount == 0
|
||||
&& !hashing
|
||||
&& read_jobs.size() == 0
|
||||
&& read_jobs.empty()
|
||||
&& outstanding_read == 0
|
||||
&& (ignore_hash || !hash || hash->offset == 0);
|
||||
}
|
||||
|
|
|
@ -105,7 +105,7 @@ namespace libtorrent {
|
|||
}
|
||||
|
||||
// this contains information about a file that's currently open by the
|
||||
// libtorrent disk I/O subsystem. It's associated with a single torent.
|
||||
// libtorrent disk I/O subsystem. It's associated with a single torrent.
|
||||
struct TORRENT_EXPORT open_file_state
|
||||
{
|
||||
// the index of the file this entry refers to into the ``file_storage``
|
||||
|
|
|
@ -376,7 +376,6 @@ namespace aux {
|
|||
status_t do_check_fastresume(disk_io_job* j, jobqueue_t& completed_jobs);
|
||||
status_t do_rename_file(disk_io_job* j, jobqueue_t& completed_jobs);
|
||||
status_t do_stop_torrent(disk_io_job* j, jobqueue_t& completed_jobs);
|
||||
status_t do_read_and_hash(disk_io_job* j, jobqueue_t& completed_jobs);
|
||||
status_t do_flush_piece(disk_io_job* j, jobqueue_t& completed_jobs);
|
||||
status_t do_flush_hashed(disk_io_job* j, jobqueue_t& completed_jobs);
|
||||
status_t do_flush_storage(disk_io_job* j, jobqueue_t& completed_jobs);
|
||||
|
|
|
@ -69,7 +69,7 @@ namespace libtorrent {
|
|||
|
||||
// set the maximum number of I/O threads which may be running
|
||||
// the actual number of threads will be <= this number
|
||||
void set_max_threads(int const i);
|
||||
void set_max_threads(int i);
|
||||
void abort(bool wait);
|
||||
int max_threads() const { return m_max_threads; }
|
||||
|
||||
|
|
|
@ -73,4 +73,3 @@ namespace libtorrent {
|
|||
}
|
||||
|
||||
#endif // TORRENT_DISK_JOB_POOL
|
||||
|
||||
|
|
|
@ -168,7 +168,7 @@ namespace libtorrent {
|
|||
, m_mtu_floor_slab(mtu_floor_size)
|
||||
, m_mtu_ceiling_slab(mtu_ceiling_size)
|
||||
{}
|
||||
packet_pool(packet_pool&&) = default;
|
||||
packet_pool(packet_pool&&) = delete;
|
||||
|
||||
packet_ptr acquire(int const allocate)
|
||||
{
|
||||
|
@ -183,7 +183,7 @@ namespace libtorrent {
|
|||
{
|
||||
TORRENT_ASSERT(is_single_thread());
|
||||
|
||||
if (p.get() == nullptr) return;
|
||||
if (!p) return;
|
||||
|
||||
int const allocated = p->allocated;
|
||||
|
||||
|
|
Loading…
Reference in New Issue