mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 17:19:44 -06:00
General: Remove unnecessary semicolons
This commit is contained in:
@ -27,7 +27,7 @@ private:
|
||||
std::array<u16, 32> m_CachedRegs{};
|
||||
std::array<bool, 32> m_CachedRegHasChanged{};
|
||||
|
||||
DECLARE_NO_COPY_CLASS(CDSPRegTable);
|
||||
DECLARE_NO_COPY_CLASS(CDSPRegTable)
|
||||
};
|
||||
|
||||
class DSPRegisterView final : public wxGrid
|
||||
|
@ -30,7 +30,7 @@ private:
|
||||
std::array<u32, MAX_SPECIALS> m_CachedWatch;
|
||||
std::array<bool, MAX_SPECIALS> m_CachedWatchHasChanged;
|
||||
|
||||
DECLARE_NO_COPY_CLASS(CWatchTable);
|
||||
DECLARE_NO_COPY_CLASS(CWatchTable)
|
||||
};
|
||||
|
||||
class CWatchView : public wxGrid
|
||||
|
@ -366,5 +366,5 @@ private:
|
||||
bool InitControllers();
|
||||
|
||||
// Event table
|
||||
DECLARE_EVENT_TABLE();
|
||||
DECLARE_EVENT_TABLE()
|
||||
};
|
||||
|
@ -59,7 +59,7 @@ public:
|
||||
virtual ~CISOProperties();
|
||||
|
||||
private:
|
||||
DECLARE_EVENT_TABLE();
|
||||
DECLARE_EVENT_TABLE()
|
||||
|
||||
std::unique_ptr<DiscIO::Volume> m_open_iso;
|
||||
|
||||
|
@ -26,7 +26,7 @@ public:
|
||||
~CMemcardManager();
|
||||
|
||||
private:
|
||||
DECLARE_EVENT_TABLE();
|
||||
DECLARE_EVENT_TABLE()
|
||||
|
||||
std::array<int, 2> page;
|
||||
int itemsPerPage;
|
||||
|
Reference in New Issue
Block a user