Skip to content

Commit

Permalink
Fix linker failure when using SPIFFS or LittleFS with Arduino as comp…
Browse files Browse the repository at this point in the history
…onent. (#8768)

Co-authored-by: Me No Dev <[email protected]>
  • Loading branch information
blackhack and me-no-dev authored Oct 17, 2023
1 parent f218209 commit 4b3aebe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions libraries/FS/src/FSImpl.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ class FileImpl
virtual const char* name() const = 0;
virtual boolean isDirectory(void) = 0;
virtual FileImplPtr openNextFile(const char* mode) = 0;
virtual boolean seekDir(long position);
virtual String getNextFileName(void);
virtual String getNextFileName(bool *isDir);
virtual boolean seekDir(long position) = 0;
virtual String getNextFileName(void) = 0;
virtual String getNextFileName(bool *isDir) = 0;
virtual void rewindDirectory(void) = 0;
virtual operator bool() = 0;
};
Expand Down

0 comments on commit 4b3aebe

Please sign in to comment.