Skip to content

Commit dbe9be0

Browse files
committed
remove unused reference to .second
1 parent 6c67d9c commit dbe9be0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

filters/SupervoxelFilter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ size_t SupervoxelFilter::estimateClusterCount(PointView &view)
126126
Voxel v = std::make_tuple((int)(std::floor(x / m_R)),
127127
(int)(std::floor(y / m_R)), (int)(std::floor(z / m_R)));
128128

129-
populatedVoxels.insert(v).second;
129+
populatedVoxels.insert(v);
130130
}
131131
return populatedVoxels.size();
132132
}

0 commit comments

Comments
 (0)