diff options
author | Abseil Team <absl-team@google.com> | 2023-06-28 13:34:32 -0700 |
---|---|---|
committer | Copybara-Service <copybara-worker@google.com> | 2023-06-28 13:35:17 -0700 |
commit | 2119e40e17b56e38d077279fa7480b04d769d01d (patch) | |
tree | 8b2f0361dff2f703c5788fcdda2c30fd7079399e /absl/time/internal/cctz/src/time_zone_libc.h | |
parent | bba65bd11506292aad0258ab516fe9eabf507e18 (diff) | |
download | abseil-2119e40e17b56e38d077279fa7480b04d769d01d.tar.gz abseil-2119e40e17b56e38d077279fa7480b04d769d01d.tar.bz2 abseil-2119e40e17b56e38d077279fa7480b04d769d01d.zip |
Roll forward of CCTZ update; fixed by clang release.
PiperOrigin-RevId: 544146637
Change-Id: I5ca44465f451956ae246081ce826891599b18b9c
Diffstat (limited to 'absl/time/internal/cctz/src/time_zone_libc.h')
-rw-r--r-- | absl/time/internal/cctz/src/time_zone_libc.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/absl/time/internal/cctz/src/time_zone_libc.h b/absl/time/internal/cctz/src/time_zone_libc.h index 1da9039a..2d6fa686 100644 --- a/absl/time/internal/cctz/src/time_zone_libc.h +++ b/absl/time/internal/cctz/src/time_zone_libc.h @@ -27,10 +27,10 @@ namespace cctz { // A time zone backed by gmtime_r(3), localtime_r(3), and mktime(3), // and which therefore only supports UTC and the local time zone. -// TODO: Add support for fixed offsets from UTC. class TimeZoneLibC : public TimeZoneIf { public: - explicit TimeZoneLibC(const std::string& name); + // Factory. + static std::unique_ptr<TimeZoneLibC> Make(const std::string& name); // TimeZoneIf implementations. time_zone::absolute_lookup BreakTime( @@ -44,6 +44,10 @@ class TimeZoneLibC : public TimeZoneIf { std::string Description() const override; private: + explicit TimeZoneLibC(const std::string& name); + TimeZoneLibC(const TimeZoneLibC&) = delete; + TimeZoneLibC& operator=(const TimeZoneLibC&) = delete; + const bool local_; // localtime or UTC }; |