From b8dff49c017488971bd9668227425ad8a98383ac Mon Sep 17 00:00:00 2001 From: Martchus Date: Thu, 7 Dec 2023 10:44:27 +0100 Subject: [PATCH] Add missing include for `std::array` See https://github.com/Martchus/cpp-utilities/issues/29 --- chrono/timespan.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/chrono/timespan.cpp b/chrono/timespan.cpp index 87a29e2..5c3ff72 100644 --- a/chrono/timespan.cpp +++ b/chrono/timespan.cpp @@ -5,6 +5,7 @@ #include "../conversion/stringbuilder.h" #include "../conversion/stringconversion.h" +#include #include #include #include