Skip to content

Commit

Permalink
parallel.h is private again, so we can make iters.h private as well.
Browse files Browse the repository at this point in the history
  • Loading branch information
starseeker committed Nov 18, 2024
1 parent 78915ae commit 8ea2d04
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 3 deletions.
1 change: 0 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,6 @@ install(
set(
MANIFOLD_PUBLIC_HDRS
common.h
iters.h
linalg.h
manifold.h
optional_assert.h
Expand Down
2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -972,8 +972,8 @@ INPUT = include/manifold/manifold.h \
include/manifold/meshIO.h \
include/manifold/linalg.h \
include/manifold/vec_view.h \
include/manifold/iters.h \
include/manifold/optional_assert.h \
src/iters.h \
src/parallel.h \
src/manifold.cpp \
src/constructors.cpp \
Expand Down
1 change: 1 addition & 0 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ set(
csg_tree.h
hashtable.h
impl.h
iters.h
mesh_fixes.h
parallel.h
quickhull.h
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/parallel.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@

#pragma once

#include "./iters.h"
#if (MANIFOLD_PAR == 1)
#include <tbb/combinable.h>
#include <tbb/parallel_for.h>
Expand All @@ -27,7 +28,6 @@
#include <algorithm>
#include <numeric>

#include "manifold/iters.h"
namespace manifold {

enum class ExecutionPolicy {
Expand Down

0 comments on commit 8ea2d04

Please sign in to comment.