Skip to content

Commit

Permalink
Merge pull request #1016 from SvenAlbrecht/octree_const_mods
Browse files Browse the repository at this point in the history
Added const modifiers to OctreePointCloud function
  • Loading branch information
taketwo committed Nov 24, 2014
2 parents e6d729c + db1be6f commit 3d5f191
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion octree/include/pcl/octree/octree_pointcloud.h
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ namespace pcl
* \param[out] max_pt upper bound of voxel
*/
inline void
getVoxelBounds (OctreeIteratorBase<OctreeT>& iterator, Eigen::Vector3f &min_pt, Eigen::Vector3f &max_pt)
getVoxelBounds (const OctreeIteratorBase<OctreeT>& iterator, Eigen::Vector3f &min_pt, Eigen::Vector3f &max_pt) const
{
this->genVoxelBoundsFromOctreeKey (iterator.getCurrentOctreeKey (),
iterator.getCurrentOctreeDepth (), min_pt, max_pt);
Expand Down

0 comments on commit 3d5f191

Please sign in to comment.