Skip to content

Commit

Permalink
Fix misalignment due to 's/size_t/std::size_t/g'
Browse files Browse the repository at this point in the history
  • Loading branch information
kunaltyagi committed Oct 21, 2019
1 parent a81efe4 commit 1e3c62e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ namespace pcl
PCL_ADD_POINT4D
PCL_ADD_NORMAL4D
PCL_ADD_RGB
float weight;
float weight;
unsigned int age;
std::uint32_t directions;
std::uint32_t directions;

PCL_MAKE_ALIGNED_OPERATOR_NEW
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ namespace pcl
PCL_EXPORTS void
addDirection (const Eigen::Vector4f& normal,
const Eigen::Vector4f& direction,
std::uint32_t& directions);
std::uint32_t& directions);

PCL_EXPORTS unsigned int
countDirections (const std::uint32_t directions);
Expand Down
2 changes: 1 addition & 1 deletion apps/in_hand_scanner/src/visibility_confidence.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ namespace pcl
void
pcl::ihs::addDirection (const Eigen::Vector4f& normal,
const Eigen::Vector4f& direction,
std::uint32_t& directions)
std::uint32_t& directions)
{
// Find the rotation that aligns the normal with [0; 0; 1]
const float dot = normal.z ();
Expand Down

0 comments on commit 1e3c62e

Please sign in to comment.