Skip to content

Conversation

@MHotchin
Copy link

Allow inline declaration of TimeChangeRule. Saves 24 bytes RAM, does not affect current code.
Instead of this:
TimeChangeRule PDT = {"PDT", Second, Sun, Mar, 2, -7 * 60};
TimeChangeRule PST = {"PST", First, Sun, Nov, 2, -8 * 60};

Timezone tz(PDT, PST);

you can now also:
Timezone tz(TimeChangeRule("PDT", Second, Sun, Mar, 2, -7 * 60),
TimeChangeRule("PST", First, Sun, Nov, 2, -8 * 60));

@MHotchin
Copy link
Author

Sorry about check-in, revert, check-in. Still learning Git.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant