Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
pinocchio
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Stack Of Tasks
pinocchio
Commits
87d2c667
Commit
87d2c667
authored
9 years ago
by
jcarpent
Browse files
Options
Downloads
Patches
Plain Diff
[C++] Correct typedef as gcc complains
parent
c52c492f
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/multibody/model.hpp
+4
-4
4 additions, 4 deletions
src/multibody/model.hpp
src/spatial/frame.hpp
+1
-1
1 addition, 1 deletion
src/spatial/frame.hpp
with
5 additions
and
5 deletions
src/multibody/model.hpp
+
4
−
4
View file @
87d2c667
...
...
@@ -45,10 +45,10 @@ namespace se3
class
Model
{
public:
typedef
Index
Index
;
typedef
JointIndex
JointIndex
;
typedef
GeomIndex
GeomIndex
;
typedef
FrameIndex
FrameIndex
;
typedef
se3
::
Index
Index
;
typedef
se3
::
JointIndex
JointIndex
;
typedef
se3
::
GeomIndex
GeomIndex
;
typedef
se3
::
FrameIndex
FrameIndex
;
int
nq
;
// Dimension of the configuration representation
int
nv
;
// Dimension of the velocity vector space
...
...
This diff is collapsed.
Click to expand it.
src/spatial/frame.hpp
+
1
−
1
View file @
87d2c667
...
...
@@ -34,7 +34,7 @@ namespace se3
///
struct
Frame
{
typedef
JointIndex
JointIndex
;
typedef
se3
::
JointIndex
JointIndex
;
Frame
()
:
name
(
random
(
8
)),
parent_id
(),
framePlacement
()
{}
// needed by EIGEN_DEFINE_STL_VECTOR_SPECIALIZATION
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment