diff options
author | Abseil Team <absl-team@google.com> | 2018-04-30T18·44-0700 |
---|---|---|
committer | vslashg <gfalcon@google.com> | 2018-04-30T19·07-0400 |
commit | 9613678332c976568272c8f4a78631a29159271d (patch) | |
tree | 63cd33be6a3d663752065a321319407370ba762c /absl/time/time.cc | |
parent | 28f5b890702139effabf3576f20e1a4db4a90a80 (diff) |
- 60c1f40a5e0bc33f93392ff6827528072d749a29 Move ExceptionSafetyTester from the absl:: namespace to t... by Abseil Team <absl-team@google.com>
- abd40a98f8ae746eb151e777ea8a8b5223d68a4b Splits the NoThrow flags into TypeSpec and AllocSpec flag... by Abseil Team <absl-team@google.com> - c16d0b5509b36679b384147b474135e7951afccf Change the abbreviation for the breakdowns of InfinitePas... by Abseil Team <absl-team@google.com> - 8ac104351764f23d666b52dce7536a34c05abf00 Use ABSL_CONST_INIT with std::atomic variables in static ... by Matt Armstrong <marmstrong@google.com> GitOrigin-RevId: 60c1f40a5e0bc33f93392ff6827528072d749a29 Change-Id: I9d45a6ed30ed32ae57e9eff93f4205dbcd71feb2
Diffstat (limited to 'absl/time/time.cc')
-rw-r--r-- | absl/time/time.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/absl/time/time.cc b/absl/time/time.cc index 1dde40d7e2cc..03720f62b007 100644 --- a/absl/time/time.cc +++ b/absl/time/time.cc @@ -71,7 +71,7 @@ inline absl::Time::Breakdown InfiniteFutureBreakdown() { bd.yearday = 365; bd.offset = 0; bd.is_dst = false; - bd.zone_abbr = "-0000"; + bd.zone_abbr = "-00"; return bd; } @@ -88,7 +88,7 @@ inline Time::Breakdown InfinitePastBreakdown() { bd.yearday = 1; bd.offset = 0; bd.is_dst = false; - bd.zone_abbr = "-0000"; + bd.zone_abbr = "-00"; return bd; } |