Skip to content
Snippets Groups Projects
Commit e28b9369 authored by lat9nq's avatar lat9nq
Browse files

configure_ui: Silence MSVC warning

parent 6fe51b48
No related branches found
No related tags found
No related merge requests found
......@@ -96,7 +96,7 @@ static void PopulateResolutionComboBox(QComboBox* screenshot_height, QWidget* pa
static u32 ScreenshotDimensionToInt(const QString& height) {
try {
return std::stoi(height.toStdString());
} catch (std::invalid_argument& e) {
} catch (std::invalid_argument&) {
return 0;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment