From db006408b74f70c9a6116c3fde012c85d7f917e6 Mon Sep 17 00:00:00 2001 From: Martchus Date: Sun, 3 Dec 2017 14:56:34 +0100 Subject: [PATCH] Export DateTime operator+(DateTime begin, Period period) --- chrono/period.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrono/period.h b/chrono/period.h index 6d6e0a9..d73cae3 100644 --- a/chrono/period.h +++ b/chrono/period.h @@ -42,7 +42,7 @@ inline int Period::days() const return m_days; } -DateTime operator+(DateTime begin, Period period); +DateTime CPP_UTILITIES_EXPORT operator+(DateTime begin, Period period); } // namespace ChronoUtilities