minor change to avoid a compiler warning about un-used variable.

master
Rohit Grover 2015-08-07 15:27:34 +01:00
parent bff44f94a6
commit eb97fcf064
1 changed files with 1 additions and 0 deletions

View File

@ -410,6 +410,7 @@ public:
protected:
/* Override the following in the underlying adaptation layer to provide the functionality of scanning. */
virtual ble_error_t startRadioScan(const GapScanningParams &scanningParams) {
(void)scanningParams;
return BLE_ERROR_NOT_IMPLEMENTED; /* Requesting action from porter(s): override this API if this capability is supported. */
}