From f39b26be75ab72168d104e3c7029d5ddba5a992f Mon Sep 17 00:00:00 2001 From: Bastien Nocera Date: Tue, 12 Aug 2025 19:20:40 +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/DeviceCore/DevUtil.h:49:36: error: ‘BOOST_LOG_TRIVIAL’ was not declared in this scope 49 | BOOST_LOG_TRIVIAL(error) << __FUNCTION__ << ": " << e.what(); | ^ (cherry picked from commit 6c830d11e9066bc1afeb1f321f47e8e95931cb4a) --- src/slic3r/GUI/DeviceCore/DevUtil.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/slic3r/GUI/DeviceCore/DevUtil.h b/src/slic3r/GUI/DeviceCore/DevUtil.h index 6b734898fd..4282d31cf7 100644 --- a/src/slic3r/GUI/DeviceCore/DevUtil.h +++ b/src/slic3r/GUI/DeviceCore/DevUtil.h @@ -11,6 +11,7 @@ #include #include +#include #include "nlohmann/json.hpp" namespace Slic3r