Skip to content

Commit

Permalink
Merge pull request #2248 from taketwo/fix-gc
Browse files Browse the repository at this point in the history
Inline helper function gcCorrespSorter()
  • Loading branch information
SergioRAgostinho authored Mar 9, 2018
2 parents c78482b + 457e42a commit ade66c4
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@
#include <pcl/common/io.h>

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
bool
gcCorrespSorter (pcl::Correspondence i, pcl::Correspondence j)
{
return (i.distance < j.distance);
inline bool
gcCorrespSorter (pcl::Correspondence i, pcl::Correspondence j)
{
return (i.distance < j.distance);
}

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
Expand Down

0 comments on commit ade66c4

Please sign in to comment.