From f28468297ba16e7ee14b26d5a037de7b97495903 Mon Sep 17 00:00:00 2001 From: Florent Lamiraux <florent@laas.fr> Date: Sun, 6 May 2018 17:52:50 +0200 Subject: [PATCH] In class Roadmap call parent implementation in init method - parent implementation initializes weak_ member. --- include/hpp/manipulation/roadmap.hh | 1 + 1 file changed, 1 insertion(+) diff --git a/include/hpp/manipulation/roadmap.hh b/include/hpp/manipulation/roadmap.hh index bff7a43..685b1c1 100644 --- a/include/hpp/manipulation/roadmap.hh +++ b/include/hpp/manipulation/roadmap.hh @@ -84,6 +84,7 @@ namespace hpp { void init (const RoadmapPtr_t& shPtr) { + Parent::init (shPtr); weak_ = shPtr; } -- GitLab