mirror of
https://github.com/AxioDL/boo.git
synced 2025-12-13 23:26:16 +00:00
General: Add missing override specifiers
Adds override specifiers that I missed for other platforms when initially applying them to the codebase.
This commit is contained in:
@@ -16,8 +16,7 @@ class HIDDeviceBSD final : public IHIDDevice {
|
||||
|
||||
public:
|
||||
HIDDeviceBSD(DeviceToken& token, DeviceBase& devImp) : m_token(token), m_devImp(devImp) {}
|
||||
|
||||
~HIDDeviceBSD() {}
|
||||
~HIDDeviceBSD() override = default;
|
||||
};
|
||||
|
||||
std::shared_ptr<IHIDDevice> IHIDDeviceNew(DeviceToken& token, const std::shared_ptr<DeviceBase>& devImp) {
|
||||
|
||||
Reference in New Issue
Block a user