[uart] void functions should return nothing (#7829)

This commit is contained in:
Keith Burzinski 2024-11-25 02:39:22 -06:00 committed by GitHub
parent aa6cea6f7e
commit 1bd2d41ffd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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() {