boost::int64_t -> std::int64_t

This commit is contained in:
arvidn 2018-03-14 12:11:58 +01:00 committed by Arvid Norberg
parent 4f7b683eb0
commit 4e04e6993d
1 changed files with 1 additions and 1 deletions

View File

@ -216,7 +216,7 @@ void test_transfer(lt::session& ses, std::shared_ptr<torrent_info> torrent_file
if (st.is_seeding)
{
boost::int64_t const total_blocks = (torrent_file->total_size() + 0x3fff) / 0x4000;
std::int64_t const total_blocks = (torrent_file->total_size() + 0x3fff) / 0x4000;
// we need to sleep here a bit to let the session sync with the torrent stats
// commented out because it takes such a long time
for (int i = 0; i < 50; ++i)