Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
E
eigenpy
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
eigenpy
Commits
e03f6b28
Commit
e03f6b28
authored
6 months ago
by
Wilson Jallet
Committed by
Justin Carpentier
6 months ago
Browse files
Options
Downloads
Patches
Plain Diff
Move overload_base_get_item_for_std_map<> using-typedef back to std-map.hpp
parent
aa2c54b4
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/eigenpy/map.hpp
+0
-10
0 additions, 10 deletions
include/eigenpy/map.hpp
include/eigenpy/std-map.hpp
+9
-0
9 additions, 0 deletions
include/eigenpy/std-map.hpp
with
9 additions
and
10 deletions
include/eigenpy/map.hpp
+
0
−
10
View file @
e03f6b28
...
@@ -9,7 +9,6 @@
...
@@ -9,7 +9,6 @@
#include
"eigenpy/pickle-vector.hpp"
#include
"eigenpy/pickle-vector.hpp"
#include
"eigenpy/registration.hpp"
#include
"eigenpy/registration.hpp"
#include
"eigenpy/utils/empty-visitor.hpp"
#include
"eigenpy/utils/empty-visitor.hpp"
#include
"eigenpy/deprecated.hpp"
#include
<boost/python/suite/indexing/map_indexing_suite.hpp>
#include
<boost/python/suite/indexing/map_indexing_suite.hpp>
#include
<boost/python/stl_iterator.hpp>
#include
<boost/python/stl_iterator.hpp>
...
@@ -66,15 +65,6 @@ struct overload_base_get_item_for_map
...
@@ -66,15 +65,6 @@ struct overload_base_get_item_for_map
}
}
};
};
namespace
details
{
template
<
typename
Container
>
using
overload_base_get_item_for_std_map
EIGENPY_DEPRECATED_MESSAGE
(
"Use overload_base_get_item_for_map<> instead."
)
=
overload_base_get_item_for_map
<
Container
>
;
}
// namespace details
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
// The following snippet of code has been taken from the header
// The following snippet of code has been taken from the header
// https://github.com/loco-3d/crocoddyl/blob/v2.1.0/bindings/python/crocoddyl/utils/map-converter.hpp
// https://github.com/loco-3d/crocoddyl/blob/v2.1.0/bindings/python/crocoddyl/utils/map-converter.hpp
...
...
This diff is collapsed.
Click to expand it.
include/eigenpy/std-map.hpp
+
9
−
0
View file @
e03f6b28
...
@@ -10,6 +10,15 @@
...
@@ -10,6 +10,15 @@
namespace
eigenpy
{
namespace
eigenpy
{
template
<
typename
Container
>
using
overload_base_get_item_for_std_map
EIGENPY_DEPRECATED_MESSAGE
(
"Use overload_base_get_item_for_map<> instead."
)
=
overload_base_get_item_for_map
<
Container
>
;
namespace
details
{
using
::
eigenpy
::
overload_base_get_item_for_std_map
;
}
// namespace details
/**
/**
* @brief Expose an std::map from a type given as template argument.
* @brief Expose an std::map from a type given as template argument.
*
*
...
...
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