convert bitfield to bools

pull/14603/head
Paul Szczepanek 2021-04-29 19:07:31 +01:00
parent 172e9697da
commit f872dfa5ca
1 changed files with 2 additions and 2 deletions

View File

@ -990,9 +990,9 @@ private:
BitArray<BLE_GAP_MAX_ADVERTISING_SETS> _adv_started_from_refresh;
bool _user_manage_connection_parameter_requests : 1;
bool _user_manage_connection_parameter_requests;
#if BLE_ROLE_OBSERVER
bool _scan_parameters_set : 1;
bool _scan_parameters_set;
#endif // BLE_ROLE_OBSERVER
};