Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
arduino-esp32
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
arduino-esp32
Commits
84f2a3c3
Unverified
Commit
84f2a3c3
authored
Jan 17, 2024
by
Jason2866
Committed by
GitHub
Jan 17, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Backport fix linker failure (#9121)
parent
5d321a8a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
libraries/FS/src/FSImpl.h
libraries/FS/src/FSImpl.h
+3
-3
No files found.
libraries/FS/src/FSImpl.h
View file @
84f2a3c3
...
@@ -43,9 +43,9 @@ public:
...
@@ -43,9 +43,9 @@ public:
virtual
const
char
*
name
()
const
=
0
;
virtual
const
char
*
name
()
const
=
0
;
virtual
boolean
isDirectory
(
void
)
=
0
;
virtual
boolean
isDirectory
(
void
)
=
0
;
virtual
FileImplPtr
openNextFile
(
const
char
*
mode
)
=
0
;
virtual
FileImplPtr
openNextFile
(
const
char
*
mode
)
=
0
;
virtual
boolean
seekDir
(
long
position
);
virtual
boolean
seekDir
(
long
position
)
=
0
;
virtual
String
getNextFileName
(
void
);
virtual
String
getNextFileName
(
void
)
=
0
;
virtual
String
getNextFileName
(
bool
*
isDir
);
virtual
String
getNextFileName
(
bool
*
isDir
)
=
0
;
virtual
void
rewindDirectory
(
void
)
=
0
;
virtual
void
rewindDirectory
(
void
)
=
0
;
virtual
operator
bool
()
=
0
;
virtual
operator
bool
()
=
0
;
};
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment