Skip to content

Commit a23df69

Browse files
authored
Merge pull request #3279 from Nicogene/fixJacobianCoupling
IJacobianCoupling: fix linker error under windows
2 parents efbe265 + 3b9e5f2 commit a23df69

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

src/libYARP_dev/src/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,7 @@ set(YARP_dev_SRCS
173173
yarp/dev/IFrameWriterAudioVisual.cpp
174174
yarp/dev/IFrameWriterImage.cpp
175175
yarp/dev/IGenericSensor.cpp
176+
yarp/dev/IJacobianCoupling.cpp
176177
yarp/dev/IJoypadController.cpp
177178
yarp/dev/ILLM.cpp
178179
yarp/dev/IMultipleWrapper.cpp
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/*
2+
* SPDX-FileCopyrightText: 2006-2023 Istituto Italiano di Tecnologia (IIT)
3+
* SPDX-License-Identifier: BSD-3-Clause
4+
*/
5+
6+
#include <yarp/dev/IJacobianCoupling.h>
7+
8+
yarp::dev::IJacobianCoupling::~IJacobianCoupling() = default;

src/libYARP_dev/src/yarp/dev/IJacobianCoupling.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ class YARP_dev_API yarp::dev::IJacobianCoupling
6363
/**
6464
* Destructor.
6565
*/
66-
virtual ~IJacobianCoupling() {}
66+
virtual ~IJacobianCoupling();
6767

6868
/**
6969
* @brief Get the Jacobian mapping the Actuated Axes to Physical Joints velocity

0 commit comments

Comments
 (0)