mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2026-01-30 02:29:12 +03:00
add missing overrides
This commit is contained in:
@@ -54,7 +54,7 @@ class File : public Stream {
|
||||
int peek() override;
|
||||
void flush() override;
|
||||
size_t read(uint8_t * buf, size_t size);
|
||||
size_t readBytes(char * buffer, size_t length) {
|
||||
size_t readBytes(char * buffer, size_t length) override {
|
||||
return read((uint8_t *)buffer, length);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user