Skip to content

Commit

Permalink
Fixed clang-tidy, clang-format CI issues
Browse files Browse the repository at this point in the history
  • Loading branch information
gnawme committed Oct 27, 2023
1 parent 6cebc64 commit 3dca669
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,7 @@ namespace pcl

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/** \brief Empty constructor. */
SeededHueSegmentation ()
{};
SeededHueSegmentation () = default;

/** \brief Provide a pointer to the search object.
* \param[in] tree a pointer to the spatial search object.
Expand Down
3 changes: 1 addition & 2 deletions stereo/include/pcl/stereo/impl/disparity_map_converter.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,7 @@

template <typename PointT>
pcl::DisparityMapConverter<PointT>::DisparityMapConverter()
:
disparity_threshold_max_(std::numeric_limits<float>::max())
: disparity_threshold_max_(std::numeric_limits<float>::max())
{}

template <typename PointT>
Expand Down
2 changes: 1 addition & 1 deletion tools/ply2raw.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
class ply_to_raw_converter
{
public:
ply_to_raw_converter() {}
ply_to_raw_converter() = default;

ply_to_raw_converter (const ply_to_raw_converter &f) :
ostream_ (), vertex_x_ (0), vertex_y_ (0), vertex_z_ (0),
Expand Down

0 comments on commit 3dca669

Please sign in to comment.