fix: add missing #include <string> to SDCardManager.h (#12)

The SDCardManager.h header uses std::string in function signatures but
doesn't include the <string> header, causing build failures.

Co-authored-by: ratedcounsel <hello@ratedcounsel.com>
This commit is contained in:
Justinian 2026-01-02 06:50:17 +00:00 committed by GitHub
parent bd4e670750
commit 0589632f17
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,6 +2,7 @@
#include <WString.h>
#include <vector>
#include <string>
#include <SdFat.h>
class SDCardManager {