You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GNU date accepts a timezone code plus an offset between -24 and +24 (e.g. m+24, y-24).
We are using chrono::FixedOffset to represent offsets, which accepts offsets only in the range -24 to +24. Note that the literal m+12 will overflow because the letter m already denotes a +12 offset.
We should re-design the underlining data models to achieve the GNU date behavior.