Skip to content

Commit 03f44e7

Browse files
paul-szczepanek-armpan-
authored andcommitted
accidental spare const removed
1 parent 8ac6e2c commit 03f44e7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

features/FEATURE_BLE/ble/BLETypes.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -719,19 +719,19 @@ class phy_set_t {
719719
return (_value & PHY_SET_1M);
720720
}
721721

722-
bool get_2m() const {
722+
bool get_2m() const {
723723
return (_value & PHY_SET_2M);
724724
}
725725

726-
bool get_coded() const {
726+
bool get_coded() const {
727727
return (_value & PHY_SET_CODED);
728728
}
729729

730-
operator uint8_t() const {
730+
operator uint8_t() const {
731731
return _value;
732732
}
733733

734-
uint8_t value() const const {
734+
uint8_t value() const {
735735
return _value;
736736
}
737737

0 commit comments

Comments
 (0)