fix build

This commit is contained in:
arvidn 2017-01-28 20:21:39 -05:00 committed by Arvid Norberg
parent deecdb6cfa
commit 95c8c1de0f
2 changed files with 3 additions and 5 deletions

View File

@ -198,15 +198,13 @@ namespace
dict min_memory_usage_wrapper()
{
settings_pack ret;
min_memory_usage(ret);
settings_pack ret = min_memory_usage();
return make_dict(ret);
}
dict high_performance_seed_wrapper()
{
settings_pack ret;
high_performance_seed(ret);
settings_pack ret = high_performance_seed();
return make_dict(ret);
}

View File

@ -295,7 +295,7 @@ namespace libtorrent
// On windows this path (and other paths) are interpreted as UNC
// paths. This means they must use backslashes as directory separators
// and may not contain the special directories "." or "..".
//
//
// Setting this to an absolute path is slightly more performant than a
// relative path.
std::string save_path;