From cbb33ea938746c3bcbf00ef760ccb460e971e82e Mon Sep 17 00:00:00 2001 From: Vincent Coubard Date: Fri, 20 Apr 2018 10:22:56 +0100 Subject: [PATCH] BLE: Add comments to GenericSecurityManager::on_identity_list_retrieved. --- features/FEATURE_BLE/ble/generic/GenericSecurityManager.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/features/FEATURE_BLE/ble/generic/GenericSecurityManager.h b/features/FEATURE_BLE/ble/generic/GenericSecurityManager.h index 68f664f837..c242b7cba6 100644 --- a/features/FEATURE_BLE/ble/generic/GenericSecurityManager.h +++ b/features/FEATURE_BLE/ble/generic/GenericSecurityManager.h @@ -414,10 +414,14 @@ private: /** * Callback invoked by the secure DB when the identity list has been * retrieved. - * @param identity + * + * @param identity View to the array passed to the secure DB. It contains + * identity entries retrieved. + * + * @param count Number of identities entries retrieved. */ void on_identity_list_retrieved( - ble::ArrayView&, + ble::ArrayView& identity_list, size_t count );