From dbb1cbce67213dae3d7b354c8d7ac8e824888e63 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sat, 15 Aug 2020 11:14:09 -0400 Subject: [PATCH] yuzu: Resolve -Wextra-semi warnings While we're in the same area, we can ensure GameDir member variables are always initialized to consistent values. --- src/yuzu/game_list.cpp | 2 +- src/yuzu/game_list_worker.cpp | 2 +- src/yuzu/uisettings.h | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/yuzu/game_list.cpp b/src/yuzu/game_list.cpp index 62acc37207..967ef4a217 100644 --- a/src/yuzu/game_list.cpp +++ b/src/yuzu/game_list.cpp @@ -406,7 +406,7 @@ bool GameList::isEmpty() const { type == GameListItemType::SysNandDir)) { item_model->invisibleRootItem()->removeRow(child->row()); i--; - }; + } } return !item_model->invisibleRootItem()->hasChildren(); } diff --git a/src/yuzu/game_list_worker.cpp b/src/yuzu/game_list_worker.cpp index 643ca64910..c9a395222b 100644 --- a/src/yuzu/game_list_worker.cpp +++ b/src/yuzu/game_list_worker.cpp @@ -374,7 +374,7 @@ void GameListWorker::run() { ScanFileSystem(ScanTarget::PopulateGameList, game_dir.path.toStdString(), game_dir.deep_scan ? 256 : 0, game_list_dir); } - }; + } emit Finished(watch_list); } diff --git a/src/yuzu/uisettings.h b/src/yuzu/uisettings.h index bbfeafc553..2d2e82f15f 100644 --- a/src/yuzu/uisettings.h +++ b/src/yuzu/uisettings.h @@ -29,14 +29,14 @@ extern const Themes themes; struct GameDir { QString path; - bool deep_scan; - bool expanded; + bool deep_scan = false; + bool expanded = false; bool operator==(const GameDir& rhs) const { return path == rhs.path; - }; + } bool operator!=(const GameDir& rhs) const { return !operator==(rhs); - }; + } }; struct Values {