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

This commit is contained in:
Rohit Grover 2015-08-07 15:27:34 +01:00
parent bff44f94a6
commit eb97fcf064

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. */
}