Skip to content

Commit

Permalink
elalish spotted that this isn't a public header - fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
starseeker committed Sep 28, 2024
1 parent 9bb9a8f commit b4548c3
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 6 deletions.
1 change: 0 additions & 1 deletion include/manifold/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ set(MANIFOLD_PUBLIC_HDRS
optional_assert.h
parallel.h
polygon.h
tri_dist.h
vec_view.h
)

Expand Down
1 change: 1 addition & 0 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ set(MANIFOLD_PRIVATE_HDRS
shared.h
sparse.h
svd.h
tri_dist.h
utils.h
vec.h
)
Expand Down
4 changes: 2 additions & 2 deletions src/properties.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@

#include <limits>

#include "impl.h"
#include "./impl.h"
#include "./tri_dist.h"
#include "manifold/parallel.h"
#include "manifold/tri_dist.h"

namespace {
using namespace manifold;
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion test/hull_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@

#include <algorithm>

#include "../src/tri_dist.h"
#include "manifold/manifold.h"
#include "manifold/tri_dist.h"
#include "samples.h"
#include "test.h"

Expand Down
2 changes: 1 addition & 1 deletion test/manifold_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#ifdef MANIFOLD_CROSS_SECTION
#include "manifold/cross_section.h"
#endif
#include "manifold/tri_dist.h"
#include "../src/tri_dist.h"
#include "samples.h"
#include "test.h"

Expand Down
2 changes: 1 addition & 1 deletion test/properties_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#include "../src/tri_dist.h"
#include "manifold/manifold.h"
#include "manifold/tri_dist.h"
#include "samples.h"
#include "test.h"

Expand Down

0 comments on commit b4548c3

Please sign in to comment.