Remove redundant semicolons

This commit is contained in:
Dr. Dystopia
2024-08-18 15:08:44 +02:00
parent 4ff5ff2772
commit 9602f36248
48 changed files with 72 additions and 70 deletions

View File

@ -18,7 +18,7 @@ namespace Core
{
class CPUThreadGuard;
class System;
}; // namespace Core
} // namespace Core
class WatchWidget : public QDockWidget
{

View File

@ -65,7 +65,7 @@ Slot OtherSlot(Slot slot)
{
return slot == Slot::A ? Slot::B : Slot::A;
}
}; // namespace
} // namespace
struct GCMemcardManager::IconAnimationData
{

View File

@ -50,7 +50,7 @@ InfinityBaseWindow::InfinityBaseWindow(QWidget* parent) : QWidget(parent)
installEventFilter(this);
OnEmulationStateChanged(Core::GetState(Core::System::GetInstance()));
};
}
InfinityBaseWindow::~InfinityBaseWindow() = default;

View File

@ -24,7 +24,7 @@ enum class State;
namespace DiscIO
{
enum class Region;
};
}
namespace UICommon
{

View File

@ -81,7 +81,7 @@ SkylanderPortalWindow::SkylanderPortalWindow(QWidget* parent) : QWidget(parent)
m_collection_path = QDir::toNativeSeparators(skylanders_folder.path()) + QDir::separator();
m_last_skylander_path = m_collection_path;
m_path_edit->setText(m_collection_path);
};
}
SkylanderPortalWindow::~SkylanderPortalWindow() = default;