From 8b9be73357ade73be23979b42fc5f3f80af74ca0 Mon Sep 17 00:00:00 2001 From: root Date: Sat, 9 Mar 2024 09:51:49 +0100 Subject: [PATCH] Fix GCC 12.3.0 compilation issue --- daemon/log.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/daemon/log.cpp b/daemon/log.cpp index 8b894c8..0ef259d 100644 --- a/daemon/log.cpp +++ b/daemon/log.cpp @@ -23,11 +23,14 @@ #include #include #include +#include + #include #include "config.hpp" #include "log.hpp" + namespace logging = boost::log; namespace src = boost::log::sources; namespace sinks = boost::log::sinks;