Skip to content

Commit

Permalink
Merge pull request PointCloudLibrary#925 from jpapon/typename_fix_VS
Browse files Browse the repository at this point in the history
Fixes for issue PointCloudLibrary#924
  • Loading branch information
taketwo committed Sep 23, 2014
2 parents 89ec4f9 + d72b57f commit 7039581
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions gpu/people/src/cuda/nvidia/NCV.cu
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include "NCV.hpp"

using namespace std;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ namespace pcl
return leaf_data_left.idx_ < leaf_data_right.idx_;
}
};
typedef std::set<LeafContainerT*,SupervoxelHelper::compareLeaves> LeafSetT;
typedef std::set<LeafContainerT*, typename SupervoxelHelper::compareLeaves> LeafSetT;
typedef typename LeafSetT::iterator iterator;
typedef typename LeafSetT::const_iterator const_iterator;

Expand Down

0 comments on commit 7039581

Please sign in to comment.