Skip to content

Commit

Permalink
include pinocchio before boost
Browse files Browse the repository at this point in the history
  • Loading branch information
nim65s committed Jul 28, 2022
1 parent ee67122 commit 5a262f6
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
3 changes: 3 additions & 0 deletions src/diff_drive_controller.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@
* Author: Bence Magyar, Enrique Fernández
*/

#include <pinocchio/fwd.hpp>
// include pinocchio before boost

#include <diff_drive_controller.h>
#include <dynamic-graph/command-bind.h>
#include <dynamic-graph/command-direct-getter.h>
Expand Down
5 changes: 3 additions & 2 deletions src/odometry.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@
#ifndef ODOMETRY_H_
#define ODOMETRY_H_

#include "pinocchio/fwd.hpp"
// include pinocchio before boost

#include <dynamic-graph/entity.h>
#include <dynamic-graph/signal-ptr.h>
#include <dynamic-graph/signal-time-dependent.h>
Expand All @@ -52,8 +55,6 @@
#include <boost/function.hpp>
#include <sot/core/matrix-geometry.hh>

#include "pinocchio/fwd.hpp"

namespace dynamicgraph {
namespace details {
namespace bacc = boost::accumulators;
Expand Down
6 changes: 4 additions & 2 deletions src/sot-tiago-controller.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,17 @@
*
*/

#include "sot-tiago-controller.hh"
#include <pinocchio/fwd.hpp>
// include pinocchio before boost

#include <boost/thread/condition.hpp>
#include <boost/thread/thread.hpp>
#include <dynamic_graph_bridge/ros_init.hh>
#include <dynamic_graph_bridge/ros_interpreter.hh>
#include <pinocchio/fwd.hpp>
#include <sot/core/debug.hh>
#include <sot/core/exception-abstract.hh>

#include "sot-tiago-controller.hh"
const std::string SoTTiagoController::LOG_PYTHON =
"/tmp/TiagoController_python.out";

Expand Down

0 comments on commit 5a262f6

Please sign in to comment.