Skip to content
Snippets Groups Projects
Commit eb1f5ecf authored by Olivier Stasse's avatar Olivier Stasse
Browse files

[wip/sot-core-v3] Release 4.2.0

Changes since last release:

[cmake] Remove unnecessary install when generating a python package.
[cmake] Add the possibility to install only the python binding.
[control] Fix control-pd
[tools] Add HandUtil structure to Robot-utils
Fix Index issue on parameter-server.cpp + fix warnings.
parent 0cace20e
No related branches found
No related tags found
No related merge requests found
......@@ -4,7 +4,7 @@
ORG= stack-of-tasks
NAME= sot-core
VERSION= 4.1.1
VERSION= 4.2.0
DISTNAME= ${NAME}-${VERSION}
PKGNAME= ${NAME}-v3-${VERSION}
......
SHA1 (sot-core-4.1.1.tar.gz) = 13df07061624f1d1609489c6f50835cf0de3c40f
RMD160 (sot-core-4.1.1.tar.gz) = 2c43092f1f8dfa8b3b14a41fc509b75bdb0e617f
Size (sot-core-4.1.1.tar.gz) = 1082407 bytes
SHA1 (patch-ae) = 92c1519ebfa1af2fcc21e2ad1d492620ed1ed543
SHA1 (sot-core-4.2.0.tar.gz) = f47ccb3eda457f42f7f36a56195662abf0a69c67
RMD160 (sot-core-4.2.0.tar.gz) = fb91f598306081e46b6c709be0ade0bd95a6502f
Size (sot-core-4.2.0.tar.gz) = 1086520 bytes
From 5961ecf4cefff6d7e22f493435a44008db178307 Mon Sep 17 00:00:00 2001
From: Guilhem Saurel <guilhem.saurel@laas.fr>
Date: Thu, 7 Mar 2019 10:41:47 +0100
Subject: [PATCH] fix build on C++11
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
src/tools/device.cpp:530:19: error: unable to find string literal operator ‘operator""what’ with ‘const char [31]’, ‘long unsigned int’ arguments
CHECK_BOUNDS(state_, lowerPosition_, upperPosition_, "position");
^
---
src/tools/device.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/tools/device.cpp b/src/tools/device.cpp
index 03ca73b..0e2df1e 100644
--- src/tools/device.cpp
+++ src/tools/device.cpp
@@ -508,7 +508,7 @@ saturateBounds (double& val, const double& lower, const double& upper)
for (int i = 0; i < val.size(); ++i) { \
double old = val(i); \
if (saturateBounds (val(i), lower(i), upper(i))) \
- dgRTLOG () << "Robot "what" bound violation at DoF " << i << \
+ dgRTLOG () << "Robot " what " bound violation at DoF " << i << \
": requested " << old << " but set " << val(i) << '\n'; \
}
--
2.7.4
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