mirror of
https://github.com/esphome/esphome.git
synced 2025-09-02 03:12:20 +01:00
[uart] void
functions should return nothing (#7829)
This commit is contained in:
@@ -40,7 +40,7 @@ class UARTDevice {
|
||||
|
||||
int available() { return this->parent_->available(); }
|
||||
|
||||
void flush() { return this->parent_->flush(); }
|
||||
void flush() { this->parent_->flush(); }
|
||||
|
||||
// Compat APIs
|
||||
int read() {
|
||||
|
Reference in New Issue
Block a user