FIX: Fix missing BOOST_LOG_TRIVIAL declaration

/run/build/BambuStudio/src/slic3r/Utils/FileTransferUtils.hpp:65:27: error: ‘info’ was not declared in this scope
   65 |         BOOST_LOG_TRIVIAL(info) << std::string("symbol not found: ") + name;
      |                           ^~~~
/run/build/BambuStudio/src/slic3r/Utils/FileTransferUtils.hpp:65:9: error: there are no arguments to ‘BOOST_LOG_TRIVIAL’ that depend on a template parameter, so a declaration of ‘BOOST_LOG_TRIVIAL’ must be available [-fpermissive]
   65 |         BOOST_LOG_TRIVIAL(info) << std::string("symbol not found: ") + name;
      |         ^~~~~~~~~~~~~~~~~

(cherry picked from commit 4c30fb7edd3a4a29db9178685ff276cff2da22f3)
This commit is contained in:
Bastien Nocera 2025-10-14 18:14:06 +02:00 committed by Noisyfox
parent a50f14c6ce
commit 54f17fc5af

View file

@ -8,6 +8,7 @@
#include <utility>
#include <cstring>
#include <memory>
#include <boost/log/trivial.hpp>
#ifdef _WIN32
#include <windows.h>