Fix tbb include

This commit is contained in:
Julian Stahl 2022-09-06 15:55:10 +02:00
parent 568a5c2060
commit 8007bba88b
3 changed files with 9 additions and 0 deletions

View File

@ -4,7 +4,10 @@
#include <CGAL/Cartesian_grid_3.h>
#include <CGAL/Cartesian_topology_base.h>
#include <CGAL/Isosurfacing_3/internal/Tables.h>
#ifdef CGAL_LINKED_WITH_TBB
#include <tbb/parallel_for.h>
#endif // CGAL_LINKED_WITH_TBB
namespace CGAL {
namespace Isosurfacing {

View File

@ -3,7 +3,10 @@
#include <CGAL/Bbox_3.h>
#include <CGAL/Cartesian_topology_base.h>
#ifdef CGAL_LINKED_WITH_TBB
#include <tbb/parallel_for.h>
#endif // CGAL_LINKED_WITH_TBB
namespace CGAL {
namespace Isosurfacing {

View File

@ -3,7 +3,10 @@
#include <CGAL/Cell_type.h>
#include <CGAL/Octree_wrapper.h>
#ifdef CGAL_LINKED_WITH_TBB
#include <tbb/parallel_for.h>
#endif // CGAL_LINKED_WITH_TBB
#include <array>