Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Humanoid Path Planner
hpp-model
Commits
f5cc1656
Commit
f5cc1656
authored
Feb 02, 2015
by
Florent Lamiraux
Browse files
Merge pull request #9 from nassimeblinlaas/master
Corrected error message
parents
0eb2fdf7
4ee289af
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/joint-configuration.cc
View file @
f5cc1656
...
...
@@ -309,10 +309,10 @@ namespace hpp {
{
for
(
unsigned
int
i
=
0
;
i
<
dimension
;
++
i
)
{
if
(
!
isBounded
(
i
))
{
std
::
ostringstream
iss
(
"Cannot uniformly sample non bounded translation degrees of "
"freedom at rank "
)
;
iss
<<
index
+
i
;
std
::
ostringstream
iss
;
iss
<<
"Cannot uniformly sample non bounded translation degrees of "
;
iss
<<
"freedom at rank "
;
iss
<<
index
+
i
;
throw
std
::
runtime_error
(
iss
.
str
());
}
else
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment