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) {
|
||||
auto unionCri = make_unique<UnionSeedCriteria>();
|
||||
if (option->defined(PREF_SEED_TIME)) {
|
||||
unionCri->addSeedCriteria(make_unique<TimeSeedCriteria>(
|
||||
std::chrono::seconds((int)(option->getAsDouble(PREF_SEED_TIME) * 60))));
|
||||
unionCri->addSeedCriteria(
|
||||
make_unique<TimeSeedCriteria>(std::chrono::seconds(
|
||||
static_cast<int>(option->getAsDouble(PREF_SEED_TIME) * 60))));
|
||||
}
|
||||
{
|
||||
double ratio = option->getAsDouble(PREF_SEED_RATIO);
|
||||
|
|
Loading…
Reference in New Issue