astyle fixes

pull/13209/head
George Beckstein 2021-02-25 17:19:32 -05:00
parent 326f5bb898
commit 78e33b0926
2 changed files with 4 additions and 2 deletions

View File

@ -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;

View File

@ -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;