1
0
mirror of https://github.com/esphome/esphome.git synced 2026-02-08 08:41:59 +00:00

more fixes

This commit is contained in:
J. Nick Koston
2026-01-30 22:38:43 -06:00
parent d00bf3f49d
commit da2b8aecf1

View File

@@ -61,7 +61,7 @@ template<size_t N> struct FixedString {
///
template<FixedString... Strs> struct ProgmemStringTable {
static constexpr size_t COUNT = sizeof...(Strs);
static constexpr size_t BLOB_SIZE = (... + (Strs.size() + 1));
static constexpr size_t BLOB_SIZE = (0 + ... + (Strs.size() + 1));
/// Generate packed string blob at compile time
static constexpr auto make_blob() {