TZ_TABLE: Add missing const

pull/3730/merge
Will Miles 2024-02-19 09:48:34 -05:00 zatwierdzone przez Blaz Kristan
rodzic 59886a1528
commit c8c394b4e9
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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