Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Master #49

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open

Master #49

wants to merge 3 commits into from

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