settings_setting: Fix MSVC error

This commit is contained in:
lat9nq 2023-06-18 17:58:07 -04:00
parent 246740f102
commit c97cbd089b

View file

@ -170,7 +170,7 @@ public:
} else {
this->SetValue(static_cast<Type>(std::stoll(input)));
}
} catch (std::invalid_argument& e) {
} catch (std::invalid_argument&) {
this->SetValue(this->GetDefault());
}
}