From 4e04e6993da85b337a8c172bcff115a6ff381a21 Mon Sep 17 00:00:00 2001 From: arvidn Date: Wed, 14 Mar 2018 12:11:58 +0100 Subject: [PATCH] boost::int64_t -> std::int64_t --- test/web_seed_suite.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/web_seed_suite.cpp b/test/web_seed_suite.cpp index 8d3cd0f50..0e5637c9a 100644 --- a/test/web_seed_suite.cpp +++ b/test/web_seed_suite.cpp @@ -216,7 +216,7 @@ void test_transfer(lt::session& ses, std::shared_ptr 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)