removed unused var

This commit is contained in:
Paolo Cignoni 2015-09-24 16:41:58 +00:00
parent 874346d211
commit 48f65697f0
1 changed files with 10 additions and 9 deletions

View File

@ -168,7 +168,8 @@ namespace vcg {
//first node inserted (no leaf). The others are made by the createTree function (recursively) //first node inserted (no leaf). The others are made by the createTree function (recursively)
mNodes.resize(1); mNodes.resize(1);
mNodes.back().leaf = 0; mNodes.back().leaf = 0;
int numLevel = createTree(0, 0, mPoints.size(), 1, nofPointsPerCell, maxDepth); /*int numLevel = */
createTree(0, 0, mPoints.size(), 1, nofPointsPerCell, maxDepth);
} }
template<typename Scalar> template<typename Scalar>