Skip to content

Commit e3bf576

Browse files
authored
Merge pull request #5641 from Destranix/master
PCL_MAKE_ALIGNED_OPERATOR_NEW extra semicolon fix
2 parents 30124ee + 0120b47 commit e3bf576

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

filters/include/pcl/filters/plane_clipper3D.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ namespace pcl
5454
using Ptr = shared_ptr< PlaneClipper3D<PointT> >;
5555
using ConstPtr = shared_ptr< const PlaneClipper3D<PointT> >;
5656

57-
PCL_MAKE_ALIGNED_OPERATOR_NEW;
57+
PCL_MAKE_ALIGNED_OPERATOR_NEW
5858

5959
/**
6060
* @author Suat Gedikli <gedikli@willowgarage.com>

filters/include/pcl/filters/uniform_sampling.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ namespace pcl
7171
using Ptr = shared_ptr<UniformSampling<PointT> >;
7272
using ConstPtr = shared_ptr<const UniformSampling<PointT> >;
7373

74-
PCL_MAKE_ALIGNED_OPERATOR_NEW;
74+
PCL_MAKE_ALIGNED_OPERATOR_NEW
7575

7676
/** \brief Empty constructor. */
7777
UniformSampling (bool extract_removed_indices = false) :

filters/include/pcl/filters/voxel_grid.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ namespace pcl
190190
using Ptr = shared_ptr<VoxelGrid<PointT> >;
191191
using ConstPtr = shared_ptr<const VoxelGrid<PointT> >;
192192

193-
PCL_MAKE_ALIGNED_OPERATOR_NEW;
193+
PCL_MAKE_ALIGNED_OPERATOR_NEW
194194

195195
/** \brief Empty constructor. */
196196
VoxelGrid () :

filters/include/pcl/filters/voxel_grid_occlusion_estimation.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ namespace pcl
6767

6868
public:
6969

70-
PCL_MAKE_ALIGNED_OPERATOR_NEW;
70+
PCL_MAKE_ALIGNED_OPERATOR_NEW
7171

7272
/** \brief Empty constructor. */
7373
VoxelGridOcclusionEstimation ()

gpu/kinfu_large_scale/include/pcl/gpu/kinfu_large_scale/point_intensity.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
struct EIGEN_ALIGN16 PointIntensity
4848
{
4949

50-
PCL_MAKE_ALIGNED_OPERATOR_NEW;
50+
PCL_MAKE_ALIGNED_OPERATOR_NEW
5151
union
5252
{
5353
struct

registration/include/pcl/registration/gicp.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ class GeneralizedIterativeClosestPoint
113113
typename IterativeClosestPoint<PointSource, PointTarget, Scalar>::Matrix4;
114114
using AngleAxis = typename Eigen::AngleAxis<Scalar>;
115115

116-
PCL_MAKE_ALIGNED_OPERATOR_NEW;
116+
PCL_MAKE_ALIGNED_OPERATOR_NEW
117117

118118
/** \brief Empty constructor. */
119119
GeneralizedIterativeClosestPoint()

registration/include/pcl/registration/incremental_registration.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ class IncrementalRegistration {
111111
/** \brief Set registration instance used to align clouds */
112112
inline void setRegistration(RegistrationPtr);
113113

114-
PCL_MAKE_ALIGNED_OPERATOR_NEW;
114+
PCL_MAKE_ALIGNED_OPERATOR_NEW
115115

116116
protected:
117117
/** \brief last registered point cloud */

registration/include/pcl/registration/vertex_estimates.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ struct PoseEstimate {
6565
: pose(p), cloud(c)
6666
{}
6767

68-
PCL_MAKE_ALIGNED_OPERATOR_NEW;
68+
PCL_MAKE_ALIGNED_OPERATOR_NEW
6969
};
7070
} // namespace registration
7171
} // namespace pcl

test/common/test_transforms.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ class Transforms : public ::testing::Test
105105
// Indices, every second point
106106
Indices indices;
107107

108-
PCL_MAKE_ALIGNED_OPERATOR_NEW;
108+
PCL_MAKE_ALIGNED_OPERATOR_NEW
109109
};
110110

111111
TYPED_TEST_SUITE (Transforms, TransformTypes);

0 commit comments

Comments
 (0)