From e67bcf35c8018aed97ef53781290579ab3f11d83 Mon Sep 17 00:00:00 2001 From: Andres Amaya Garcia Date: Fri, 8 Jan 2016 15:51:30 +0000 Subject: [PATCH] Make getAddressFromBondTable API const --- ble/SecurityManager.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ble/SecurityManager.h b/ble/SecurityManager.h index 60f6df6..102536c 100644 --- a/ble/SecurityManager.h +++ b/ble/SecurityManager.h @@ -176,7 +176,7 @@ public: * @retval BLE_ERROR_INVALID_STATE If the API is called without module initialization or * application registration. */ - virtual ble_error_t getAddressesFromBondTable(Gap::Whitelist_t &addresses) { + virtual ble_error_t getAddressesFromBondTable(Gap::Whitelist_t &addresses) const { /* Avoid compiler warnings about unused variables */ (void) addresses;