Skip to content

Commit 3af2830

Browse files
committed
unsigned ints not omp supported by windows.
1 parent ee0e33f commit 3af2830

File tree

3 files changed

+2
-75
lines changed

3 files changed

+2
-75
lines changed

external/assm/algorithms/ScreenRemeshing.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -657,7 +657,7 @@ void ScreenRemeshing<Projection>::tangential_smoothing(unsigned int iterations)
657657
for (unsigned int iters = 0; iters < iterations; ++iters)
658658
{
659659
#pragma omp parallel for private(v1, v2, v3, vv, e, w, ww, u, n, t, b) shared(update)
660-
for (size_t i = 0; i < mesh_.n_vertices(); ++i)
660+
for (int i = 0; i < int(mesh_.n_vertices()); ++i)
661661
{
662662
Vertex v(i);
663663

@@ -720,7 +720,7 @@ void ScreenRemeshing<Projection>::tangential_smoothing(unsigned int iterations)
720720

721721
// update vertex positions
722722
#pragma omp parallel for private(v1, v2, v3, vv, e, w, ww, u, n, t, b) shared(update)
723-
for (size_t i = 0; i != mesh_.n_vertices(); ++i)
723+
for (int i = 0; i < int(mesh_.n_vertices()); ++i)
724724
{
725725
Vertex v(i);
726726
if (!mesh_.is_boundary(v) && !vlocked_[v])

onebyone.sh

-26
This file was deleted.

windows_compile.txt

-47
This file was deleted.

0 commit comments

Comments
 (0)