From 202041e531c75f75fa65b9524e11f4c6416b58c8 Mon Sep 17 00:00:00 2001 From: Pavel Davydov Date: Tue, 24 Oct 2017 17:26:18 +0300 Subject: [PATCH] Add a workaround for a missing operator<< for gcc 5 on linux. See issue #205 for details. --- include/date/tz_private.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/date/tz_private.h b/include/date/tz_private.h index ae04f29..1aaad8e 100644 --- a/include/date/tz_private.h +++ b/include/date/tz_private.h @@ -291,6 +291,7 @@ struct transition { using namespace date; using namespace std::chrono; + using date::operator<<; os << t.timepoint << "Z "; if (t.info->offset >= seconds{0}) os << '+';