From e8f0dca452f9660230b17a86925f795d1e2a575a Mon Sep 17 00:00:00 2001 From: Howard Hinnant Date: Thu, 4 May 2017 10:04:17 -0400 Subject: [PATCH] Fix type-o in to_stream duration overload. --- date.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/date.h b/date.h index 2131246..8c710e3 100644 --- a/date.h +++ b/date.h @@ -5128,7 +5128,7 @@ to_stream(std::basic_ostream& os, const CharT* fmt, { using Duration = std::chrono::duration; using CT = typename std::common_type::type; - fields fds{time_of_day{d}}; + fields fds{time_of_day{d}}; to_stream(os, fmt, fds); }