Skip to content
Snippets Groups Projects
Commit 4f1461e8 authored by Florent Lamiraux's avatar Florent Lamiraux
Browse files

Fix compilation warnings.

  - use Path::operator () that takes a boolean argument.
parent 62da57be
No related branches found
No related tags found
No related merge requests found
......@@ -109,8 +109,9 @@ namespace hpp {
if (pathIsValid) {
value_type t_final = path->timeRange ().second;
if (t_final != path->timeRange ().first) {
bool success;
ConfigurationPtr_t q_new (new Configuration_t
((*path) (t_final)));
((*path) (t_final, success)));
if (!belongs (q_new, newNodes)) {
newNodes.push_back (roadmap ()->addNodeAndEdges
(near, q_new, path));
......
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