Skip to content

Commit

Permalink
fix build warnings tf2_eigen.h
Browse files Browse the repository at this point in the history
  • Loading branch information
vooon committed Sep 9, 2023
1 parent 5f8c492 commit 0a8b46c
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 12 deletions.
2 changes: 1 addition & 1 deletion mavros/mavros/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def __init__(
self, node_name: typing.Optional[str] = None, mavros_ns: str = DEFAULT_NAMESPACE
):
"""
Constructor.
BaseNode.
:param node_name: name of the node, would be random if None
:param mavros_ns: node name of mavros::UAS
Expand Down
3 changes: 1 addition & 2 deletions mavros/src/plugins/setpoint_accel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@
* @{
*/

#include <tf2_eigen/tf2_eigen.h>

#include "tf2_eigen/tf2_eigen.hpp"
#include "rcpputils/asserts.hpp"
#include "mavros/mavros_uas.hpp"
#include "mavros/plugin.hpp"
Expand Down
2 changes: 1 addition & 1 deletion mavros/src/plugins/setpoint_attitude.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@
* @{
*/

#include <tf2_eigen/tf2_eigen.h>
#include <message_filters/subscriber.h>
#include <message_filters/synchronizer.h>
#include <message_filters/sync_policies/approximate_time.h>

#include <memory>

#include "tf2_eigen/tf2_eigen.hpp"
#include "rcpputils/asserts.hpp"
#include "mavros/mavros_uas.hpp"
#include "mavros/plugin.hpp"
Expand Down
2 changes: 1 addition & 1 deletion mavros/src/plugins/setpoint_position.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
* @{
*/

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

#include "tf2_eigen/tf2_eigen.hpp"
#include "rcpputils/asserts.hpp"
#include "mavros/mavros_uas.hpp"
#include "mavros/plugin.hpp"
Expand Down
3 changes: 1 addition & 2 deletions mavros/src/plugins/setpoint_raw.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,9 @@
* https://github.com/mavlink/mavros/tree/master/LICENSE.md
*/

#include <tf2_eigen/tf2_eigen.h>

#include <algorithm>

#include "tf2_eigen/tf2_eigen.hpp"
#include "rcpputils/asserts.hpp"
#include "mavros/mavros_uas.hpp"
#include "mavros/plugin.hpp"
Expand Down
3 changes: 1 addition & 2 deletions mavros/src/plugins/setpoint_trajectory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,10 @@
* @{
*/

#include <tf2_eigen/tf2_eigen.h>

#include <vector>
#include <string>

#include "tf2_eigen/tf2_eigen.hpp"
#include "rcpputils/asserts.hpp"
#include "mavros/mavros_uas.hpp"
#include "mavros/plugin.hpp"
Expand Down
3 changes: 1 addition & 2 deletions mavros/src/plugins/setpoint_velocity.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@
* @{
*/

#include <tf2_eigen/tf2_eigen.h>

#include "tf2_eigen/tf2_eigen.hpp"
#include "rcpputils/asserts.hpp"
#include "mavros/mavros_uas.hpp"
#include "mavros/plugin.hpp"
Expand Down
2 changes: 1 addition & 1 deletion mavros/src/plugins/wind_estimation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
*/

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

#include "tf2_eigen/tf2_eigen.hpp"
#include "rcpputils/asserts.hpp"
#include "mavros/mavros_uas.hpp"
#include "mavros/plugin.hpp"
Expand Down

0 comments on commit 0a8b46c

Please sign in to comment.