Skip to content

Commit

Permalink
Merge pull request #820 from prclibo/master
Browse files Browse the repository at this point in the history
fixed a bug of the Ptr typdef in search::KdTree
  • Loading branch information
taketwo committed Jul 31, 2014
2 parents 5a621c3 + b5a74bc commit bcdcddf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions search/include/pcl/search/kdtree.h
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ namespace pcl
using pcl::search::Search<PointT>::radiusSearch;
using pcl::search::Search<PointT>::sorted_results_;

typedef boost::shared_ptr<KdTree<PointT> > Ptr;
typedef boost::shared_ptr<const KdTree<PointT> > ConstPtr;
typedef boost::shared_ptr<KdTree<PointT, Tree> > Ptr;
typedef boost::shared_ptr<const KdTree<PointT, Tree> > ConstPtr;

typedef boost::shared_ptr<Tree> KdTreePtr;
typedef boost::shared_ptr<const Tree> KdTreeConstPtr;
Expand Down

0 comments on commit bcdcddf

Please sign in to comment.