removed dead code, fixed compiler warning

This commit is contained in:
ZappoMan 2013-07-10 17:22:30 -07:00
parent 17e70271ff
commit 371bf7d181

View file

@ -118,7 +118,6 @@ void VoxelTree::recurseTreeWithOperationDistanceSortedTimed(PointerStack* stackO
// Recurses voxel tree calling the RecurseVoxelTreeOperation function for each node.
// stops recursion if operation function returns false.
void VoxelTree::recurseTreeWithOperation(RecurseVoxelTreeOperation operation, void* extraData) {
int level = 0;
recurseNodeWithOperation(rootNode, operation, extraData);
}