File tree 4 files changed +4
-4
lines changed
4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 76
76
constexpr const struct { \
77
77
FSTR::Array<ElementType> object; \
78
78
ElementType data[size]; \
79
- } FSTR_PACKED name PROGMEM = {{sizeof (ElementType) * size}, {__VA_ARGS__}}; \
79
+ } FSTR_PACKED name PROGMEM = {{sizeof (ElementType) * size}, {__VA_ARGS__}}; \
80
80
FSTR_CHECK_STRUCT (name);
81
81
82
82
/* *
Original file line number Diff line number Diff line change 103
103
constexpr const struct { \
104
104
FSTR::Map<KeyType, ContentType> object; \
105
105
FSTR::MapPair<KeyType, ContentType> data[size]; \
106
- } FSTR_PACKED name PROGMEM = {{sizeof (FSTR::MapPair<KeyType, ContentType>) * size}, {__VA_ARGS__}}; \
106
+ } FSTR_PACKED name PROGMEM = {{sizeof (FSTR::MapPair<KeyType, ContentType>) * size}, {__VA_ARGS__}}; \
107
107
FSTR_CHECK_STRUCT (name);
108
108
109
109
namespace FSTR
Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ typedef const __FlashStringHelper* flash_string_t;
94
94
constexpr const struct { \
95
95
FSTR::String object; \
96
96
char data[ALIGNUP4(sizeof (str))]; \
97
- } FSTR_PACKED name PROGMEM = {{sizeof (str) - 1 }, str}; \
97
+ } FSTR_PACKED name PROGMEM = {{sizeof (str) - 1 }, str}; \
98
98
FSTR_CHECK_STRUCT (name);
99
99
100
100
/* *
Original file line number Diff line number Diff line change 97
97
constexpr const struct { \
98
98
FSTR::Vector<ObjectType> object; \
99
99
const ObjectType* data[size]; \
100
- } FSTR_PACKED name PROGMEM = {{sizeof (ObjectType*) * size}, {__VA_ARGS__}}; \
100
+ } FSTR_PACKED name PROGMEM = {{sizeof (ObjectType*) * size}, {__VA_ARGS__}}; \
101
101
FSTR_CHECK_STRUCT (name);
102
102
103
103
namespace FSTR
You can’t perform that action at this time.
0 commit comments