General: Remove unnecessary semicolons

This commit is contained in:
Lioncash
2017-07-30 15:56:12 -04:00
parent 2ea7ffc94a
commit f6c21e002b
19 changed files with 20 additions and 22 deletions

View File

@ -46,8 +46,7 @@ public:
~WiimoteScannerLinux() override;
bool IsReady() const override;
void FindWiimotes(std::vector<Wiimote*>&, Wiimote*&) override;
void Update() override{}; // not needed on Linux
void Update() override {} // not needed on Linux
private:
int m_device_id;
int m_device_sock;

View File

@ -996,4 +996,4 @@ bool ForgetWiimote(BLUETOOTH_DEVICE_INFO_STRUCT& btdi)
return false;
}
};
}

View File

@ -16,7 +16,7 @@ public:
~WiimoteScannerDarwin() override = default;
bool IsReady() const override;
void FindWiimotes(std::vector<Wiimote*>&, Wiimote*&) override;
void Update() override{}; // not needed
void Update() override {} // not needed
};
}

View File

@ -37,7 +37,7 @@ public:
~WiimoteScannerHidapi();
bool IsReady() const override;
void FindWiimotes(std::vector<Wiimote*>&, Wiimote*&) override;
void Update() override{}; // not needed for hidapi
void Update() override {} // not needed for hidapi
};
}

View File

@ -116,7 +116,7 @@ public:
JitBase();
~JitBase() override;
static const u8* Dispatch() { return g_jit->GetBlockCache()->Dispatch(); };
static const u8* Dispatch() { return g_jit->GetBlockCache()->Dispatch(); }
virtual JitBaseBlockCache* GetBlockCache() = 0;
virtual void Jit(u32 em_address) = 0;