Skip to content

Commit

Permalink
Remove shadowed variable
Browse files Browse the repository at this point in the history
  • Loading branch information
pramsey committed Jun 8, 2022
1 parent 8f9b3ab commit 856e15b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/algorithm/hull/ConcaveHullOfPolygons.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -298,8 +298,8 @@ ConcaveHullOfPolygons::removeFrameCornerTris(
*/
TriIndex oppIndex = Tri::oppEdge(index);
Tri* oppTri = tri->getAdjacent(oppIndex);
bool isBorderTri = oppTri != nullptr && ! isFrameTri(oppTri, frameCorners);
if (isBorderTri) {
bool bBorderTri = oppTri != nullptr && ! isFrameTri(oppTri, frameCorners);
if (bBorderTri) {
addBorderTri(tri, oppIndex);
}
tri->remove();
Expand Down

0 comments on commit 856e15b

Please sign in to comment.