FIX: Fix missing BOOST_LOG_TRIVIAL declaration

src/slic3r/GUI/Widgets/../DeviceCore/DevConfigUtil.h💯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)
This commit is contained in:
Bastien Nocera 2025-08-12 18:31:20 +02:00 committed by Noisyfox
parent d04f0ab133
commit 0d6f5921ce

View file

@ -12,6 +12,7 @@
#include <map>
#include <vector>
#include <boost/log/trivial.hpp>
#include <boost/nowide/fstream.hpp>
#include <nlohmann/json.hpp>