Skip to content

Commit

Permalink
Fix build error on other operating systems.
Browse files Browse the repository at this point in the history
  • Loading branch information
csmemoe-aquaveo committed Feb 15, 2022
1 parent dbb8c54 commit 0b477a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xmsextractor/ugrid/XmUGridTriangles2d.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ void XmUGridTriangles2dImpl::BuildTriangles(const XmUGrid& a_ugrid, PointOptionE
{
int nPts = (int)cellPoints.size();
int i = 0;
for (auto& it = cellPoints.begin(); it != cellPoints.end(); ++it)
for (auto it = cellPoints.begin(); it != cellPoints.end(); ++it)
{
int ip1 = (i + 1) % nPts;
int id0 = cellPoints[i];
Expand Down

0 comments on commit 0b477a9

Please sign in to comment.