mirror of
https://github.com/esphome/esphome.git
synced 2024-11-27 09:18:00 +01:00
[uart] void
functions should return nothing (#7829)
This commit is contained in:
parent
aa6cea6f7e
commit
1bd2d41ffd
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ class UARTDevice {
|
||||||
|
|
||||||
int available() { return this->parent_->available(); }
|
int available() { return this->parent_->available(); }
|
||||||
|
|
||||||
void flush() { return this->parent_->flush(); }
|
void flush() { this->parent_->flush(); }
|
||||||
|
|
||||||
// Compat APIs
|
// Compat APIs
|
||||||
int read() {
|
int read() {
|
||||||
|
|
Loading…
Reference in a new issue