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
83797883
Verified
Commit
83797883
authored
2 years ago
by
Justin Carpentier
Browse files
Options
Downloads
Patches
Plain Diff
core: rename macro name
parent
9d7ad651
No related branches found
No related tags found
No related merge requests found
Pipeline
#25343
passed with warnings
2 years ago
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/eigenpy/fwd.hpp
+2
-2
2 additions, 2 deletions
include/eigenpy/fwd.hpp
include/eigenpy/quaternion.hpp
+1
-1
1 addition, 1 deletion
include/eigenpy/quaternion.hpp
with
3 additions
and
3 deletions
include/eigenpy/fwd.hpp
+
2
−
2
View file @
83797883
...
@@ -95,10 +95,10 @@
...
@@ -95,10 +95,10 @@
#ifdef EIGENPY_WITH_CXX11_SUPPORT
#ifdef EIGENPY_WITH_CXX11_SUPPORT
#include
<memory>
#include
<memory>
#define EIGENPY_
CLASS
_HOLDER_TYPE(T) ::std::shared_ptr<T>
#define EIGENPY_
SHARED_PTR
_HOLDER_TYPE(T) ::std::shared_ptr<T>
#else
#else
#include
<boost/shared_ptr.hpp>
#include
<boost/shared_ptr.hpp>
#define EIGENPY_
CLASS
_HOLDER_TYPE(T) ::boost::shared_ptr<T>
#define EIGENPY_
SHARED_PTR
_HOLDER_TYPE(T) ::boost::shared_ptr<T>
#endif
#endif
namespace
eigenpy
{
namespace
eigenpy
{
...
...
This diff is collapsed.
Click to expand it.
include/eigenpy/quaternion.hpp
+
1
−
1
View file @
83797883
...
@@ -351,7 +351,7 @@ class QuaternionVisitor
...
@@ -351,7 +351,7 @@ class QuaternionVisitor
public
:
public
:
static
void
expose
()
{
static
void
expose
()
{
#if BOOST_VERSION / 100 % 1000 < 71
#if BOOST_VERSION / 100 % 1000 < 71
typedef
EIGENPY_
CLASS
_HOLDER_TYPE
(
Quaternion
)
HolderType
;
typedef
EIGENPY_
SHARED_PTR
_HOLDER_TYPE
(
Quaternion
)
HolderType
;
#else
#else
typedef
::
boost
::
python
::
detail
::
not_specified
HolderType
;
typedef
::
boost
::
python
::
detail
::
not_specified
HolderType
;
#endif
#endif
...
...
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