Skip to content

Commit

Permalink
ament uncrustify
Browse files Browse the repository at this point in the history
  • Loading branch information
vooon committed Sep 9, 2023
1 parent 105de28 commit d9e3d8b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion mavros/src/plugins/command.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ class CommandPlugin : public plugin::Plugin
"~/land",
std::bind(&CommandPlugin::land_cb, this, _1, _2, _3), rmw_qos_profile_services_default,
srv_cg);
land_local_srv =
land_local_srv =
node->create_service<mavros_msgs::srv::CommandTOLLocal>(
"~/land_local",
std::bind(&CommandPlugin::land_local_cb, this, _1, _2, _3), rmw_qos_profile_services_default,
Expand Down
6 changes: 3 additions & 3 deletions mavros_extras/src/plugins/fake_gps.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
* @{
*/

#include <tf2_eigen/tf2_eigen.h>
#include <string>

#include <tf2_eigen/tf2_eigen.hpp>
#include <GeographicLib/Geocentric.hpp>
#include <GeographicLib/Geoid.hpp>

#include <string>

#include "rcpputils/asserts.hpp"
#include "mavros/mavros_uas.hpp"
#include "mavros/plugin.hpp"
Expand Down
4 changes: 3 additions & 1 deletion mavros_extras/src/plugins/onboard_computer_status.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,9 @@ class OnboardComputerStatusPlugin : public plugin::Plugin
std::copy(req->cpu_combined.cbegin(), req->cpu_combined.cend(), status.cpu_combined.begin());
std::copy(req->gpu_cores.cbegin(), req->gpu_cores.cend(), status.gpu_cores.begin());
std::copy(req->gpu_combined.cbegin(), req->gpu_combined.cend(), status.gpu_combined.begin());
std::copy(req->temperature_core.cbegin(), req->temperature_core.cend(), status.temperature_core.begin());
std::copy(
req->temperature_core.cbegin(),
req->temperature_core.cend(), status.temperature_core.begin());
std::copy(req->fan_speed.cbegin(), req->fan_speed.cend(), status.fan_speed.begin());
std::copy(req->storage_type.cbegin(), req->storage_type.cend(), status.storage_type.begin());
std::copy(req->storage_usage.cbegin(), req->storage_usage.cend(), status.storage_usage.begin());
Expand Down

0 comments on commit d9e3d8b

Please sign in to comment.