Apply clang-format fixes

This commit is contained in:
Justin Mitchell
2026-01-02 20:22:15 -05:00
parent 796e735452
commit 9abf48b055
8 changed files with 15 additions and 9 deletions

View File

@@ -1,6 +1,7 @@
#include "OpdsParser.h"
#include <HardwareSerial.h>
#include <cstring>
OpdsParser::~OpdsParser() {

View File

@@ -18,8 +18,8 @@ enum class OpdsEntryType {
struct OpdsEntry {
OpdsEntryType type = OpdsEntryType::NAVIGATION;
std::string title;
std::string author; // Only for books
std::string href; // Navigation URL or epub download URL
std::string author; // Only for books
std::string href; // Navigation URL or epub download URL
std::string id;
};