Skip to content

Commit

Permalink
dummy to trigger CI
Browse files Browse the repository at this point in the history
Signed-off-by: Max SCHMELLER <[email protected]>

trigger build

ci(pre-commit): autofix
  • Loading branch information
mojomex committed Sep 26, 2024
1 parent da7a0a5 commit bbf0f27
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions nebula_decoders/src/nebula_decoders_hesai/hesai_driver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ HesaiDriver::HesaiDriver(
{
// initialize proper parser from cloud config's model and echo mode
driver_status_ = nebula::Status::OK;
auto x = 5; // DUMMY

switch (sensor_configuration->sensor_model) {
case SensorModel::HESAI_PANDAR64:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ HesaiRosOfflineExtractBag::HesaiRosOfflineExtractBag(
drivers::HesaiCalibrationConfiguration calibration_configuration;
drivers::HesaiSensorConfiguration sensor_configuration;
drivers::HesaiCorrection correction_configuration;
auto x = 5; // DUMMY

wrapper_status_ =
GetParameters(sensor_configuration, calibration_configuration, correction_configuration);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -538,6 +538,7 @@ HesaiLidarRangeAll HesaiHwInterface::GetLidarRange()
// TODO(yukkysaito)
break;
}
auto x = 5; // DUMMY

return hesai_range_all;
}
Expand Down
2 changes: 2 additions & 0 deletions nebula_ros/src/hesai/hesai_ros_wrapper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -396,6 +396,8 @@ rcl_interfaces::msg::SetParametersResult HesaiRosWrapper::OnParameterChange(
}
}

auto x = 10; // DUMMY

return rcl_interfaces::build<SetParametersResult>().successful(true).reason("");
}

Expand Down
1 change: 1 addition & 0 deletions nebula_tests/hesai/hesai_ros_decoder_test_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,7 @@ int main(int argc, char * argv[])
{
rclcpp::init(argc, argv);
::testing::InitGoogleTest(&argc, argv);
auto x = 5; // DUMMY

int result = RUN_ALL_TESTS();
rclcpp::shutdown();
Expand Down

0 comments on commit bbf0f27

Please sign in to comment.