From 86f0fe93ad9d6d033a319476736a3256369c1f75 Mon Sep 17 00:00:00 2001 From: Abseil Team Date: Fri, 10 Aug 2018 11:15:46 -0700 Subject: Export of internal Abseil changes. -- 9850e5567db4ab7cf4928e68d1c6e232d9845fff by Abseil Team : Add missing file parameter for FPrintF example. PiperOrigin-RevId: 208238843 -- e3aa5daed78a2d38f0f19c20db93d6b9cca54041 by Abseil Team : Internal cleanup. PiperOrigin-RevId: 208216296 -- 6ec960705441f7ae7383214160cf78244b0ac614 by Abseil Team : Import of CCTZ from GitHub. PiperOrigin-RevId: 208111059 GitOrigin-RevId: 9850e5567db4ab7cf4928e68d1c6e232d9845fff Change-Id: I3ceef9b66ffc8d434eb522f79479581975e780e6 --- absl/time/internal/cctz/include/cctz/civil_time_detail.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'absl/time') diff --git a/absl/time/internal/cctz/include/cctz/civil_time_detail.h b/absl/time/internal/cctz/include/cctz/civil_time_detail.h index 2362a4f4fbc9..f831258f20e2 100644 --- a/absl/time/internal/cctz/include/cctz/civil_time_detail.h +++ b/absl/time/internal/cctz/include/cctz/civil_time_detail.h @@ -355,11 +355,11 @@ class civil_time { : civil_time(ct.f_) {} // Factories for the maximum/minimum representable civil_time. - static civil_time max() { + static CONSTEXPR_F civil_time max() { const auto max_year = std::numeric_limits::max(); return civil_time(max_year, 12, 31, 23, 59, 59); } - static civil_time min() { + static CONSTEXPR_F civil_time min() { const auto min_year = std::numeric_limits::min(); return civil_time(min_year, 1, 1, 0, 0, 0); } -- cgit 1.4.1