From 1ca49c63f151eeef58016af29677214fa29f3db1 Mon Sep 17 00:00:00 2001 From: Mirko Waechter <mirko.waechter@kit.edu> Date: Mon, 8 Feb 2016 21:16:28 +0100 Subject: [PATCH] fixed constructor in framedpointwithnormal --- source/RobotAPI/libraries/core/FramedPointWithNormal.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/RobotAPI/libraries/core/FramedPointWithNormal.cpp b/source/RobotAPI/libraries/core/FramedPointWithNormal.cpp index 6c6880576..2111d4e8b 100644 --- a/source/RobotAPI/libraries/core/FramedPointWithNormal.cpp +++ b/source/RobotAPI/libraries/core/FramedPointWithNormal.cpp @@ -38,7 +38,8 @@ FramedPointWithNormal::FramedPointWithNormal() FramedPointWithNormal::FramedPointWithNormal(const FramedPointWithNormal& source) : IceUtil::Shared(source), PointWithNormalBase(source), - FramedPointWithNormalBase(source) + FramedPointWithNormalBase(source), + armarx::PointWithNormal(source) { } -- GitLab