Resolve C4101 warning

and catch logic_error instead of exception, as stoll should only throw std::invalid_argument and std::out_of_range, and both inherit from it.
This commit is contained in:
Vitor K 2022-11-20 22:41:33 -03:00 committed by GitHub
parent 64062162c6
commit 1e6507d792
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -262,7 +262,7 @@ void Config::ReadValues() {
try {
days = std::stoll(day_string);
} catch (std::exception& e) {
} catch (std::logic_error&) {
LOG_ERROR(Config, "Failed to parse days in init_time_offset. Using 0");
days = 0;
}