Skip to content
Snippets Groups Projects
Commit 424d7fdf authored by Joseph Mirabel's avatar Joseph Mirabel
Browse files

[Minor][C++] Fix usage of JointCollection in Data constructor

parent cdf67a62
No related branches found
No related tags found
No related merge requests found
......@@ -95,7 +95,7 @@ namespace pinocchio
/* Create data strcture associated to the joints */
for(JointIndex i=0;i<(JointIndex)(model.njoints);++i)
joints.push_back(CreateJointData<Scalar,Options,JointCollectionDefaultTpl>::run(model.joints[i]));
joints.push_back(CreateJointData<Scalar,Options,JointCollectionTpl>::run(model.joints[i]));
/* Init for CRBA */
M.setZero(); Minv.setZero();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment