mirror of
https://github.com/AxioDL/boo.git
synced 2025-12-14 23:56:29 +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:
@@ -9,11 +9,11 @@ public:
|
||||
HIDListenerUWP(DeviceFinder& finder) {}
|
||||
|
||||
/* Automatic device scanning */
|
||||
bool startScanning() { return false; }
|
||||
bool stopScanning() { return false; }
|
||||
bool startScanning() override { return false; }
|
||||
bool stopScanning() override { return false; }
|
||||
|
||||
/* Manual device scanning */
|
||||
bool scanNow() { return false; }
|
||||
bool scanNow() override { return false; }
|
||||
};
|
||||
|
||||
std::unique_ptr<IHIDListener> IHIDListenerNew(DeviceFinder& finder) { return std::make_unique<HIDListenerUWP>(finder); }
|
||||
|
||||
Reference in New Issue
Block a user