mirror of
https://github.com/wled/WLED.git
synced 2025-07-13 05:46:32 +00:00
TZ_TABLE: Add missing const
This commit is contained in:
parent
108978d1a5
commit
6f1fff44fa
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user