From da742af3a5a4fe7ba5a46ad789f1923b95531074 Mon Sep 17 00:00:00 2001 From: Kostadin Shishmanov Date: Tue, 7 Nov 2023 19:10:29 +0200 Subject: [PATCH] Add include to fix building with gcc 14 With gcc 14 some C++ Standard Library headers have been changed to no longer include other headers that were being used internally by the library. In logiops's case it is the header. Downstream Gentoo bug: https://bugs.gentoo.org/917002 GCC 14 porting guide: https://gcc.gnu.org/gcc-14/porting_to.html Signed-off-by: Kostadin Shishmanov --- src/logid/config/group.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/logid/config/group.h b/src/logid/config/group.h index e7b301a..45e717b 100644 --- a/src/logid/config/group.h +++ b/src/logid/config/group.h @@ -22,6 +22,7 @@ #include #include #include +#include namespace logid::config { template