libslic3r: include tbb/spin_mutex to fix compilation error (#7505)

PrintObject.cpp references tbb::spin_mutex, thus it needs to include
tbb/spin_mutex. Otherwise compilation fails with:

error: ‘spin_mutex’ is not a member of ‘tbb’

Supersedes #7057
This commit is contained in:
Vasily Khoruzhick 2024-11-28 06:32:54 -08:00 committed by GitHub
parent 508d0e6334
commit 16e532f73e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 1 additions and 14 deletions

View file

@ -31,6 +31,7 @@
#include <boost/log/trivial.hpp>
#include <tbb/parallel_for.h>
#include <tbb/spin_mutex.h>
#include <Shiny/Shiny.h>