mirror of https://github.com/ARMmbed/mbed-os.git
removed redundant const
parent
d0c4186b9e
commit
9786244386
|
|
@ -331,7 +331,7 @@ public:
|
|||
|
||||
virtual void on_passkey_display(
|
||||
connection_handle_t connection,
|
||||
const passkey_num_t passkey
|
||||
passkey_num_t passkey
|
||||
);
|
||||
|
||||
virtual void on_keypress_notification(
|
||||
|
|
|
|||
|
|
@ -755,7 +755,7 @@ void GenericSecurityManager::set_mitm_performed(connection_handle_t connection,
|
|||
|
||||
void GenericSecurityManager::on_passkey_display(
|
||||
connection_handle_t connection,
|
||||
const passkey_num_t passkey
|
||||
passkey_num_t passkey
|
||||
) {
|
||||
set_mitm_performed(connection);
|
||||
_app_event_handler->passkeyDisplay(connection, PasskeyAsci(passkey).asci);
|
||||
|
|
|
|||
Loading…
Reference in New Issue