1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-16 00:43:00 +03:00

Resolve naming conflicts between FS and SD library

This commit is contained in:
Ivan Grokhotkov
2015-08-05 08:36:43 -04:00
parent be2303f198
commit 5cbaa57af9
6 changed files with 19 additions and 3 deletions

View File

@ -23,6 +23,8 @@
#include <stddef.h>
#include <stdint.h>
namespace fs {
class FileImpl {
public:
virtual ~FileImpl() { }
@ -67,5 +69,6 @@ public:
};
} // namespace fs
#endif //FSIMPL_H