fix build
This commit is contained in:
parent
deecdb6cfa
commit
95c8c1de0f
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue