TZ_TABLE: Add missing const

This commit is contained in:
Will Miles 2024-02-19 09:48:34 -05:00
parent 108978d1a5
commit 6f1fff44fa

View File

@ -55,7 +55,7 @@ Timezone* tz;
byte tzCurrent = TZ_INIT; //uninitialized byte tzCurrent = TZ_INIT; //uninitialized
/* C++11 form -- static std::array<std::pair<TimeChangeRule, TimeChangeRule>, TZ_COUNT> TZ_TABLE PROGMEM = {{ */ /* C++11 form -- static std::array<std::pair<TimeChangeRule, TimeChangeRule>, TZ_COUNT> TZ_TABLE PROGMEM = {{ */
static std::pair<TimeChangeRule, TimeChangeRule> TZ_TABLE[] PROGMEM = { static const std::pair<TimeChangeRule, TimeChangeRule> TZ_TABLE[] PROGMEM = {
/* TZ_UTC */ { /* TZ_UTC */ {
{Last, Sun, Mar, 1, 0}, // UTC {Last, Sun, Mar, 1, 0}, // UTC
{Last, Sun, Mar, 1, 0} // Same {Last, Sun, Mar, 1, 0} // Same