Skip to content

Commit

Permalink
Merge pull request #636 from jcarpent/devel
Browse files Browse the repository at this point in the history
all: fix additional bug related to recent versions of boost
  • Loading branch information
jcarpent authored Jan 10, 2019
2 parents 15185ff + caa7e09 commit f665f3f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/multibody/joint/joint-basic-visitors.hxx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// Copyright (c) 2016,2018 CNRS
// Copyright (c) 2016-2019 CNRS INRIA
//

#ifndef __pinocchio_joint_basic_visitors_hxx__
Expand Down Expand Up @@ -113,13 +113,13 @@ namespace pinocchio
{

typedef boost::fusion::vector<Matrix6Type &,
const bool> ArgsType;
const bool &> ArgsType;

template<typename JointModel>
static void algo(const pinocchio::JointModelBase<JointModel> & jmodel,
pinocchio::JointDataBase<typename JointModel::JointDataDerived> & jdata,
const Eigen::MatrixBase<Matrix6Type> & I,
const bool update_I
const bool & update_I
)
{
Matrix6Type & I_ = const_cast<Matrix6Type &>(I.derived());
Expand Down

0 comments on commit f665f3f

Please sign in to comment.