FIX: Fix missing BOOST_LOG_TRIVIAL declaration

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)
This commit is contained in:
Bastien Nocera
2025-08-12 19:20:40 +02:00
committed by Noisyfox
parent 0d6f5921ce
commit f39b26be75

View File

@@ -11,6 +11,7 @@
#include <sstream>
#include <stdexcept>
#include <boost/log/trivial.hpp>
#include "nlohmann/json.hpp"
namespace Slic3r