updated build system

This commit is contained in:
2024-08-02 10:56:40 -05:00
parent 098d172f40
commit 4976825bd6
2 changed files with 7 additions and 7 deletions

View File

@ -246,8 +246,8 @@ public:
}
[[nodiscard]] auto get_preferred_download_type() const -> download_type {
return utils::download_type_from_string(preferred_download_type_,
download_type::fallback);
return download_type_from_string(preferred_download_type_,
download_type::fallback);
}
[[nodiscard]] auto get_provider_type() const -> provider_type {
@ -404,7 +404,7 @@ public:
}
void set_preferred_download_type(const download_type &dt) {
set_value(preferred_download_type_, utils::download_type_to_string(dt));
set_value(preferred_download_type_, download_type_to_string(dt));
}
void set_read_ahead_count(std::uint8_t read_ahead_count) {