swordlegend / recastnavigation

Automatically exported from code.google.com/p/recastnavigation
zlib License
0 stars 0 forks source link

RecastMeshDetail.cpp: updateLeftFace: t parameter is unused. #26

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
This issue does not impact functionality.  It just represents unused code.

File: RecastMeshDetail.cpp (Revision 76)
Operation: updateLeftFace
Parameter: t

The t parameter appears to serve no function since it is never used in the
body of the operation.

Source:

static void updateLeftFace(int* e, int s, int t, int f)
{
    if (e[0] == s && e[2] == UNDEF)
        e[2] = f;
    else if (e[1] == s && e[3] == UNDEF)
        e[3] = f;
}

Original issue reported on code.google.com by steve...@gmail.com on 28 Nov 2009 at 7:38

GoogleCodeExporter commented 9 years ago
Fixed in R83.

Original comment by memono...@gmail.com on 7 Dec 2009 at 9:52

GoogleCodeExporter commented 9 years ago

Original comment by memono...@gmail.com on 7 Dec 2009 at 9:52