Skip to content

Commit

Permalink
Loop: explicitly create function args to avoid compiler issue
Browse files Browse the repository at this point in the history
  • Loading branch information
rhaas80 committed Nov 7, 2024
1 parent 26d4d11 commit 50d2b7d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Loop/src/loop.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -187,8 +187,9 @@ public:
// Outward boundary normal (if on outermost interior point), else 0
const vect<int, dim> BI =
vect<int, dim>(I == bnd_max - 1) - vect<int, dim>(I == bnd_min);
const vect<bool, dim> CI1{CI, CJ, CK};
const PointDesc p =
point_desc({CI, CJ, CK}, I, iter, NI, I0, BI, bnd_min, bnd_max,
point_desc(CI1, I, iter, NI, I0, BI, bnd_min, bnd_max,
loop_min, loop_max);
f(p);
}
Expand Down

0 comments on commit 50d2b7d

Please sign in to comment.