Skip to content

Commit

Permalink
Fix include order (#858) (#859)
Browse files Browse the repository at this point in the history
Related to ament/ament_lint#374

Signed-off-by: Jacob Perron <jacob@openrobotics.org>
  • Loading branch information
jacobperron committed May 9, 2022
1 parent e1992ff commit d64a38a
Showing 1 changed file with 6 additions and 6 deletions.
Expand Up @@ -30,12 +30,6 @@

#include "rviz_default_plugins/robot/robot_link.hpp"

#include <ignition/math/Inertial.hh>
#include <ignition/math/MassMatrix3.hh>
#include <ignition/math/Pose3.hh>
#include <ignition/math/Quaternion.hh>
#include <ignition/math/Vector3.hh>

#define _USE_MATH_DEFINES
#include <cmath>
#include <map>
Expand All @@ -56,6 +50,12 @@

#include <QFileInfo> // NOLINT cpplint cannot handle include order here

#include <ignition/math/Inertial.hh>
#include <ignition/math/MassMatrix3.hh>
#include <ignition/math/Pose3.hh>
#include <ignition/math/Quaternion.hh>
#include <ignition/math/Vector3.hh>

#include "resource_retriever/retriever.hpp"

#include "rviz_default_plugins/robot/robot_joint.hpp"
Expand Down

0 comments on commit d64a38a

Please sign in to comment.