Skip to content

Commit

Permalink
Fix formtting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Flova committed Mar 20, 2024
1 parent 1305b20 commit 98a71dd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,9 @@
"typeindex": "cpp",
"typeinfo": "cpp",
"valarray": "cpp",
"variant": "cpp"
"variant": "cpp",
"regex": "cpp",
"future": "cpp"
},

// Tell the ROS extension where to find the setup.bash
Expand Down
2 changes: 1 addition & 1 deletion bitbots_misc/bitbots_basler_camera/src/postprocessing.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class PostProcessor {
image_sub_(std::make_unique<image_transport::CameraSubscriber>(image_transport::create_camera_subscription(
node_.get(), "in/image_raw", std::bind(&PostProcessor::image_callback, this, _1, _2),
transport_hints_.getTransport(), rclcpp::QoS(1).get_rmw_qos_profile()))),
image_pub_(std::make_unique<image_transport::CameraPublisher>(
image_pub_(std::make_unique<image_transport::CameraPublisher>(
image_transport::create_camera_publisher(node_.get(), "out/image_proc"))) {
// Declare parameters
node_->declare_parameter("binning_factor_x", 4);
Expand Down

0 comments on commit 98a71dd

Please sign in to comment.