mirror of
https://github.com/aria2/aria2.git
synced 2025-02-26 08:22:11 +00:00
Use C++ style cast
This commit is contained in:
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
Block a user