Remove unused parameters

These can cause warnings (which we treat as errors) on MSVC
This commit is contained in:
Paul Hollinsky
2021-05-05 02:40:00 -04:00
parent e99107c1bc
commit 1bb114004e
2 changed files with 4 additions and 4 deletions
@@ -19,10 +19,10 @@ public:
virtual const char* getName() const = 0;
// Return false to block opening
virtual bool onDeviceOpen(Device::OpenFlags flags, const Device::OpenStatusHandler& handler) { return true; }
virtual bool onDeviceOpen(Device::OpenFlags, const Device::OpenStatusHandler&) { return true; }
// Return true to indicate that communication should now be back
virtual bool onDeviceCommunicationDead(Device::OpenFlags flags, const Device::OpenStatusHandler& handler) { return false; }
virtual bool onDeviceCommunicationDead(Device::OpenFlags, const Device::OpenStatusHandler&) { return false; }
virtual void onGoOnline() {}
virtual void onGoOffline() {}