Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Stack Of Tasks
dynamic-graph-python
Commits
703d6836
Commit
703d6836
authored
Feb 21, 2018
by
Joseph Mirabel
Committed by
Guilhem Saurel
Jul 30, 2018
Browse files
Replace std::cerr by dgERROR
parent
20681b37
Pipeline
#1068
passed with stage
in 1 minute and 27 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/signal-wrapper.hh
View file @
703d6836
...
...
@@ -78,9 +78,9 @@ namespace dynamicgraph {
}
char
format
[]
=
"i"
;
PyObject
*
obj
=
PyObject_CallFunction
(
callable
,
format
,
t
);
if
(
obj
==
NULL
)
std
::
cerr
<<
"Could not call callable"
<<
std
::
endl
;
else
{
if
(
obj
==
NULL
)
{
dgERROR
<<
"Could not call callable"
<<
std
::
endl
;
}
else
{
signalWrapper
::
convert
(
obj
,
value
);
Py_DECREF
(
obj
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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