Skip to content

Commit

Permalink
patchkernel: silence warning about comparison of integer of different…
Browse files Browse the repository at this point in the history
… signedness
  • Loading branch information
andrea-iob committed Jun 6, 2024
1 parent c6e9186 commit 201cd91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/patchkernel/surface_kernel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1006,7 +1006,7 @@ void SurfaceKernel::evalEdgeNormals(long id, int edge, double limit,
}

// Add contribution of neighbouring cells
for (std::size_t i = 0; i < nEdgeNeighs; ++i) {
for (int i = 0; i < nEdgeNeighs; ++i) {
// Get neighbour information
long neighId = edgeNeighs[i];
std::array<double, 3> neighNormal = evalFacetNormal(neighId);
Expand Down

0 comments on commit 201cd91

Please sign in to comment.