Skip to content

Commit

Permalink
Fixing windows CI bot
Browse files Browse the repository at this point in the history
  • Loading branch information
dcoeurjo committed Dec 9, 2023
1 parent 2efabc4 commit 4f86582
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/polyscopeSlicer.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ polyscope::SurfaceMesh* registerRegularSlicer(const std::string &name,

//Evaluating the mplicit function (in parallel using openmp)
#pragma omp parallel for
for(size_t id=0; id < nbSteps*nbSteps; ++id)
for(int id=0; id < nbSteps*nbSteps; ++id)
values[id] = implicit(vertices[id]);

//Polyscope registration
Expand Down

0 comments on commit 4f86582

Please sign in to comment.