Skip to content

Commit 4b3aebe

Browse files
blackhackme-no-dev
andauthored
Fix linker failure when using SPIFFS or LittleFS with Arduino as component. (#8768)
Co-authored-by: Me No Dev <[email protected]>
1 parent f218209 commit 4b3aebe

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: libraries/FS/src/FSImpl.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ class FileImpl
4343
virtual const char* name() const = 0;
4444
virtual boolean isDirectory(void) = 0;
4545
virtual FileImplPtr openNextFile(const char* mode) = 0;
46-
virtual boolean seekDir(long position);
47-
virtual String getNextFileName(void);
48-
virtual String getNextFileName(bool *isDir);
46+
virtual boolean seekDir(long position) = 0;
47+
virtual String getNextFileName(void) = 0;
48+
virtual String getNextFileName(bool *isDir) = 0;
4949
virtual void rewindDirectory(void) = 0;
5050
virtual operator bool() = 0;
5151
};

0 commit comments

Comments
 (0)