mirror of https://github.com/ARMmbed/mbed-os.git
astyle fixes
parent
326f5bb898
commit
78e33b0926
|
@ -49,7 +49,8 @@ struct DigitalInOut {
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual DigitalInOut &operator= (DigitalInOut &rhs) {
|
virtual DigitalInOut &operator= (DigitalInOut &rhs)
|
||||||
|
{
|
||||||
// Underlying implementation is responsible for thread-safety
|
// Underlying implementation is responsible for thread-safety
|
||||||
write(rhs.read());
|
write(rhs.read());
|
||||||
return *this;
|
return *this;
|
||||||
|
|
|
@ -46,7 +46,8 @@ struct DigitalOut {
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual DigitalOut &operator= (DigitalOut &rhs) {
|
virtual DigitalOut &operator= (DigitalOut &rhs)
|
||||||
|
{
|
||||||
// Underlying implementation is responsible for thread-safety
|
// Underlying implementation is responsible for thread-safety
|
||||||
write(rhs.read());
|
write(rhs.read());
|
||||||
return *this;
|
return *this;
|
||||||
|
|
Loading…
Reference in New Issue