Skip to content

Commit

Permalink
[ci] trying to fix ubuntu-24.04 issue
Browse files Browse the repository at this point in the history
  • Loading branch information
julien-tierny committed Sep 12, 2024
1 parent f901d0a commit 53236b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/base/discreteMorseSandwich/DiscreteMorseSandwich.h
Original file line number Diff line number Diff line change
Expand Up @@ -471,14 +471,14 @@ namespace ttk {
#endif
this->s1Mapping_.resize(triangulation.getNumberOfEdges(), -1);
}
for(int i = 0; i < dim; ++i) {
for(int i = 0; i <= dim; ++i) {
#ifdef TTK_ENABLE_OPENMP
#pragma omp task
#endif
this->pairedCritCells_[i].resize(
this->dg_.getNumberOfCells(i, triangulation), false);
}
for(int i = 1; i < dim; ++i) {
for(int i = 1; i <= dim; ++i) {
#ifdef TTK_ENABLE_OPENMP
#pragma omp task
#endif
Expand Down

0 comments on commit 53236b3

Please sign in to comment.