Skip to content

Commit

Permalink
remove unused member var
Browse files Browse the repository at this point in the history
  • Loading branch information
ovaag committed Nov 23, 2023
1 parent 964bf33 commit 7abe64f
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions src/laser_scan_processor.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ class LaserScanProcessor {
PostProcessingFn func)
: frame(frame_id),
ld_mode(info.mode),
columns_per_packet(info.format.columns_per_packet),
ring_(ring),
scan_msgs(get_n_returns(info),
std::make_shared<sensor_msgs::LaserScan>()),
Expand Down Expand Up @@ -68,7 +67,6 @@ class LaserScanProcessor {
private:
std::string frame;
sensor::lidar_mode ld_mode;
uint32_t columns_per_packet;
uint16_t ring_;
ProcessedData scan_msgs;
PostProcessingFn post_processing_fn;
Expand Down
2 changes: 0 additions & 2 deletions src/point_cloud_processor.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ class PointCloudProcessor {
PointCloudProcessor_PostProcessingFn post_processing_fn_)
: frame(frame_id),
pixel_shift_by_row(info.format.pixel_shift_by_row),
columns_per_packet(info.format.columns_per_packet),
cloud{info.format.columns_per_frame, info.format.pixels_per_column},
pc_msgs(get_n_returns(info)),
scan_to_cloud_fn(scan_to_cloud_fn_),
Expand Down Expand Up @@ -126,7 +125,6 @@ class PointCloudProcessor {
ouster::PointsF lut_offset;
ouster::PointsF points;
std::vector<int> pixel_shift_by_row;
uint32_t columns_per_packet;
ouster_ros::Cloud<PointT> cloud;
ProcessedData pc_msgs;
ScanToCloudFn scan_to_cloud_fn;
Expand Down

0 comments on commit 7abe64f

Please sign in to comment.