1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-04-19 23:22:16 +03:00

Add using fs::SPIFFSConfig to FS.h (#6324)

The SPIFFS config object was defined in FS.h in its own namespace, but
is not made easily available like other SPIFFS and FS objects because of
a missing `using` statement.  Add it in FS.h

Fixes #6322
This commit is contained in:
Earle F. Philhower, III 2019-07-21 13:40:21 -07:00 committed by GitHub
parent ac25f3276f
commit 93ef2e29af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -241,6 +241,7 @@ using fs::SeekCur;
using fs::SeekEnd; using fs::SeekEnd;
using fs::FSInfo; using fs::FSInfo;
using fs::FSConfig; using fs::FSConfig;
using fs::SPIFFSConfig;
#endif //FS_NO_GLOBALS #endif //FS_NO_GLOBALS
#if !defined(NO_GLOBAL_INSTANCES) && !defined(NO_GLOBAL_SPIFFS) #if !defined(NO_GLOBAL_INSTANCES) && !defined(NO_GLOBAL_SPIFFS)