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:
@ -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;
|
||||
|
@ -996,4 +996,4 @@ bool ForgetWiimote(BLUETOOTH_DEVICE_INFO_STRUCT& btdi)
|
||||
|
||||
return false;
|
||||
}
|
||||
};
|
||||
}
|
||||
|
@ -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
|
||||
};
|
||||
}
|
||||
|
||||
|
@ -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
|
||||
};
|
||||
}
|
||||
|
||||
|
@ -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;
|
||||
|
Reference in New Issue
Block a user