Skip to content

Commit f872dfa

Browse files
convert bitfield to bools
1 parent 172e969 commit f872dfa

File tree

1 file changed

+2
-2
lines changed
  • connectivity/FEATURE_BLE/source/generic

1 file changed

+2
-2
lines changed

connectivity/FEATURE_BLE/source/generic/GapImpl.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -990,9 +990,9 @@ class Gap :
990990
BitArray<BLE_GAP_MAX_ADVERTISING_SETS> _adv_started_from_refresh;
991991

992992

993-
bool _user_manage_connection_parameter_requests : 1;
993+
bool _user_manage_connection_parameter_requests;
994994
#if BLE_ROLE_OBSERVER
995-
bool _scan_parameters_set : 1;
995+
bool _scan_parameters_set;
996996
#endif // BLE_ROLE_OBSERVER
997997

998998
};

0 commit comments

Comments
 (0)