From 1420ad852576db72baff8152fcba331586459d54 Mon Sep 17 00:00:00 2001 From: Aaron Jacobs Date: Sun, 5 Oct 2025 23:19:16 -0700 Subject: [PATCH] Internal-only change PiperOrigin-RevId: 815572468 Change-Id: I4d11314b7f7b03b14be8f6c181eee56cfc62b983 --- absl/time/time.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/absl/time/time.h b/absl/time/time.h index 8e8df2e9..b9cc7993 100644 --- a/absl/time/time.h +++ b/absl/time/time.h @@ -180,7 +180,7 @@ using EnableIfFloat = // // Alternatively, conversions can be performed using helpers such as // `ToInt64Microseconds()` and `ToDoubleSeconds()`. -class Duration { + class Duration { public: // Value semantics. constexpr Duration() : rep_hi_(0), rep_lo_(0) {} // zero-length duration @@ -787,7 +787,7 @@ std::string UnparseFlag(Duration d); // absl::Time t2 = t1 + absl::Minutes(2); // absl::Duration d = t2 - t1; // == absl::Minutes(2) // -class Time { + class Time { public: // Value semantics.