mirror of https://git.suyu.dev/suyu/suyu
settings_setting: Fix MSVC error
This commit is contained in:
parent
246740f102
commit
c97cbd089b
|
@ -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());
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue