From 93ef2e29afb130b4261c2999d9a942cf7ac5c58c Mon Sep 17 00:00:00 2001 From: "Earle F. Philhower, III" Date: Sun, 21 Jul 2019 13:40:21 -0700 Subject: [PATCH] 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 --- cores/esp8266/FS.h | 1 + 1 file changed, 1 insertion(+) diff --git a/cores/esp8266/FS.h b/cores/esp8266/FS.h index 2d33f4808..f89d343d8 100644 --- a/cores/esp8266/FS.h +++ b/cores/esp8266/FS.h @@ -241,6 +241,7 @@ using fs::SeekCur; using fs::SeekEnd; using fs::FSInfo; using fs::FSConfig; +using fs::SPIFFSConfig; #endif //FS_NO_GLOBALS #if !defined(NO_GLOBAL_INSTANCES) && !defined(NO_GLOBAL_SPIFFS)