From 463c47af4f7621e21d6e31fe0de402bcacbca4f2 Mon Sep 17 00:00:00 2001 From: xkevio Date: Tue, 6 Jun 2023 01:57:07 +0200 Subject: [PATCH 1/2] Fix GCC build error by correctly including `` header This is needed to not rely on implementation defined behavior regarding transitive header includes, here for std::integer_sequence. --- include/helpers.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/include/helpers.hpp b/include/helpers.hpp index 8164dae4..7cd64344 100644 --- a/include/helpers.hpp +++ b/include/helpers.hpp @@ -3,6 +3,7 @@ #include #include #include +#include #include #include "termcolor.hpp" From dee81bc62d50d63c7c0bf77ca7690d1f4a6df5ab Mon Sep 17 00:00:00 2001 From: xkevio Date: Tue, 6 Jun 2023 02:11:07 +0200 Subject: [PATCH 2/2] Add `` header for `std::integral_constant` --- include/helpers.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/include/helpers.hpp b/include/helpers.hpp index 7cd64344..ee1a1dac 100644 --- a/include/helpers.hpp +++ b/include/helpers.hpp @@ -3,6 +3,7 @@ #include #include #include +#include #include #include #include "termcolor.hpp"