mirror of
https://github.com/aria2/aria2.git
synced 2026-04-02 02:38:50 +00:00
Use C++ style cast
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user