Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Humanoid Path Planner
hpp-core
Commits
990599b5
Commit
990599b5
authored
Apr 13, 2021
by
Guilhem Saurel
Browse files
[Tests] use std::shared_ptr
parent
88f2693b
Changes
3
Hide whitespace changes
Inline
Side-by-side
tests/containers.cc
View file @
990599b5
...
...
@@ -20,7 +20,7 @@
#include <hpp/core/container.hh>
typedef
std
::
string
Type1
;
typedef
boo
st
::
shared_ptr
<
std
::
string
>
Type2
;
typedef
st
d
::
shared_ptr
<
std
::
string
>
Type2
;
using
hpp
::
core
::
Container
;
...
...
tests/path-projectors.cc
View file @
990599b5
...
...
@@ -113,7 +113,7 @@ class Polynomial : public DifferentiableFunction {
}
};
typedef
boo
st
::
shared_ptr
<
Polynomial
>
PolynomialPtr_t
;
typedef
st
d
::
shared_ptr
<
Polynomial
>
PolynomialPtr_t
;
/*
bool checkContinuity (PathPtr_t path) {
...
...
tests/test-path-extraction.cc
View file @
990599b5
...
...
@@ -40,7 +40,7 @@ using hpp::pinocchio::JointConstPtr_t;
using
namespace
hpp
::
core
;
HPP_PREDEF_CLASS
(
LocalPath
);
typedef
boo
st
::
shared_ptr
<
LocalPath
>
LocalPathPtr_t
;
typedef
st
d
::
shared_ptr
<
LocalPath
>
LocalPathPtr_t
;
class
LocalPath
:
public
Path
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment