Skip to content

Commit

Permalink
Merge branch 'main' into feat/description/create_sample_description_pkg
Browse files Browse the repository at this point in the history
  • Loading branch information
Autumn60 authored Aug 30, 2024
2 parents 1ac67f6 + 9406ea0 commit 1911b65
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions .cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@
"urdf",
"vcstool",
"velodyne",
"voxel",
"Wextra",
"Wpedantic",
"xacro",
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ repos:
- id: shellcheck

- repo: https://github.com/scop/pre-commit-shfmt
rev: v3.8.0-1
rev: v3.9.0-1
hooks:
- id: shfmt
args: [-w, -s, -i=4]
Expand Down Expand Up @@ -85,7 +85,7 @@ repos:
exclude: .cu

- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.29.1
rev: 0.29.2
hooks:
- id: check-metaschema
files: ^.+/schema/.*schema\.json$
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#ifndef VELODYNE_CLOUD_SEPARATOR__POINT_TYPES_HPP_
#define VELODYNE_CLOUD_SEPARATOR__POINT_TYPES_HPP_
#ifndef VELODYNE_CLOUD_SEPARATOR__POINT_XYZIR_HPP_
#define VELODYNE_CLOUD_SEPARATOR__POINT_XYZIR_HPP_

#include <pcl/point_types.h>

Expand All @@ -32,4 +32,4 @@ POINT_CLOUD_REGISTER_POINT_STRUCT(
pcl::PointXYZIR,
(float, x, x)(float, y, y)(float, z, z)(float, intensity, intensity)(uint16_t, ring, ring))

#endif // VELODYNE_CLOUD_SEPARATOR__POINT_TYPES_HPP_
#endif // VELODYNE_CLOUD_SEPARATOR__POINT_XYZIR_HPP_
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#ifndef VELODYNE_CLOUD_SEPARATOR__VELODYNE_CLOUD_SEPARATOR_HPP_
#define VELODYNE_CLOUD_SEPARATOR__VELODYNE_CLOUD_SEPARATOR_HPP_

#include "velodyne_cloud_separator/point_types.hpp"
#include "velodyne_cloud_separator/point_xyzir.hpp"

#include <rclcpp/rclcpp.hpp>
#include <wheel_stuck_common_utils/ros/function_timer.hpp>
Expand Down

0 comments on commit 1911b65

Please sign in to comment.