mirror of https://github.com/aria2/aria2
Use C++ style cast
parent
196f8c4ad9
commit
196e4cbede
|
@ -157,8 +157,9 @@ void BtSetup::setup(std::vector<std::unique_ptr<Command>>& commands,
|
||||||
if (!metadataGetMode) {
|
if (!metadataGetMode) {
|
||||||
auto unionCri = make_unique<UnionSeedCriteria>();
|
auto unionCri = make_unique<UnionSeedCriteria>();
|
||||||
if (option->defined(PREF_SEED_TIME)) {
|
if (option->defined(PREF_SEED_TIME)) {
|
||||||
unionCri->addSeedCriteria(make_unique<TimeSeedCriteria>(
|
unionCri->addSeedCriteria(
|
||||||
std::chrono::seconds((int)(option->getAsDouble(PREF_SEED_TIME) * 60))));
|
make_unique<TimeSeedCriteria>(std::chrono::seconds(
|
||||||
|
static_cast<int>(option->getAsDouble(PREF_SEED_TIME) * 60))));
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
double ratio = option->getAsDouble(PREF_SEED_RATIO);
|
double ratio = option->getAsDouble(PREF_SEED_RATIO);
|
||||||
|
|
Loading…
Reference in New Issue