forked from premiere/premiere-libtorrent
some boost 1.34 preprocessor conditions and fixed assert in piece_picker
This commit is contained in:
parent
e5a20b8de6
commit
094dc1065c
|
@ -328,7 +328,6 @@ typedef std::multimap<std::string, libtorrent::torrent_handle> handles_t;
|
|||
using boost::bind;
|
||||
using boost::filesystem::path;
|
||||
using boost::filesystem::exists;
|
||||
using boost::filesystem::no_check;
|
||||
using boost::filesystem::directory_iterator;
|
||||
using boost::filesystem::extension;
|
||||
|
||||
|
@ -443,7 +442,10 @@ void scan_dir(path const& dir_path
|
|||
|
||||
int main(int ac, char* av[])
|
||||
{
|
||||
#if BOOST_VERSION < 103400
|
||||
using boost::filesystem::no_check;
|
||||
path::default_name_check(no_check);
|
||||
#endif
|
||||
|
||||
int listen_port;
|
||||
float preferred_ratio;
|
||||
|
|
|
@ -49,8 +49,9 @@ int main(int argc, char* argv[])
|
|||
std::cerr << "usage: dump_torrent torrent-file\n";
|
||||
return 1;
|
||||
}
|
||||
|
||||
#if BOOST_VERSION < 103400
|
||||
boost::filesystem::path::default_name_check(boost::filesystem::no_check);
|
||||
#endif
|
||||
|
||||
try
|
||||
{
|
||||
|
|
|
@ -45,9 +45,10 @@ POSSIBILITY OF SUCH DAMAGE.
|
|||
int main(int argc, char* argv[])
|
||||
{
|
||||
using namespace libtorrent;
|
||||
|
||||
#if BOOST_VERSION < 103400
|
||||
namespace fs = boost::filesystem;
|
||||
fs::path::default_name_check(fs::no_check);
|
||||
#endif
|
||||
|
||||
if (argc != 2)
|
||||
{
|
||||
|
|
|
@ -725,7 +725,8 @@ namespace libtorrent
|
|||
assert(m_piece_info[last_index].empty());
|
||||
if (last_index >= cap_index)
|
||||
{
|
||||
assert(m_piece_info[cap_index - 1].empty());
|
||||
assert(pushed_out_index == cap_index - 1
|
||||
|| m_piece_info[cap_index - 1].empty());
|
||||
m_piece_info[cap_index].swap(m_piece_info[cap_index - 2]);
|
||||
if (cap_index == pushed_out_index)
|
||||
pushed_out_index = cap_index - 2;
|
||||
|
|
|
@ -88,9 +88,11 @@ namespace libtorrent
|
|||
{
|
||||
filesystem_init::filesystem_init()
|
||||
{
|
||||
#if BOOST_VERSION < 103400
|
||||
using namespace boost::filesystem;
|
||||
if (path::default_name_check_writable())
|
||||
path::default_name_check(no_check);
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue