mirror of https://github.com/ARMmbed/mbed-os.git
accidental spare const removed
parent
8ac6e2c30d
commit
03f44e7a29
|
@ -719,19 +719,19 @@ public:
|
|||
return (_value & PHY_SET_1M);
|
||||
}
|
||||
|
||||
bool get_2m() const {
|
||||
bool get_2m() const {
|
||||
return (_value & PHY_SET_2M);
|
||||
}
|
||||
|
||||
bool get_coded() const {
|
||||
bool get_coded() const {
|
||||
return (_value & PHY_SET_CODED);
|
||||
}
|
||||
|
||||
operator uint8_t() const {
|
||||
operator uint8_t() const {
|
||||
return _value;
|
||||
}
|
||||
|
||||
uint8_t value() const const {
|
||||
uint8_t value() const {
|
||||
return _value;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue