From 0d6f5921ceb46b976ddbed73ea48166bf2868963 Mon Sep 17 00:00:00 2001 From: Bastien Nocera Date: Tue, 12 Aug 2025 18:31:20 +0200 Subject: [PATCH] FIX: Fix missing BOOST_LOG_TRIVIAL declaration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit src/slic3r/GUI/Widgets/../DeviceCore/DevConfigUtil.h:100:91: error: ‘BOOST_LOG_TRIVIAL’ was not declared in this scope 100 | catch (...) { assert(0 && "get_value_from_config failed"); BOOST_LOG_TRIVIAL(error) << __FUNCTION__ << " failed"; }// there are file errors | ^ (cherry picked from commit 11d17a60104a28d7d51024d861227fb98b4709e4) --- src/slic3r/GUI/DeviceCore/DevConfigUtil.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/slic3r/GUI/DeviceCore/DevConfigUtil.h b/src/slic3r/GUI/DeviceCore/DevConfigUtil.h index 33d4d0b260..d4b44549e1 100644 --- a/src/slic3r/GUI/DeviceCore/DevConfigUtil.h +++ b/src/slic3r/GUI/DeviceCore/DevConfigUtil.h @@ -12,6 +12,7 @@ #include #include +#include #include #include