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
Guilhem Saurel
dynamic-graph
Commits
53a7bbf8
Commit
53a7bbf8
authored
Jul 24, 2020
by
Guilhem Saurel
Browse files
Merge branch 'master' into devel
parents
7ad3c601
3f6d48d0
Pipeline
#10195
failed with stage
in 7 minutes and 15 seconds
Changes
5
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
cmake
@
fb4c22c3
Compare
6a173d2e
...
fb4c22c3
Subproject commit
6a173d2e8f35f1052a6ca383a729470783aa7893
Subproject commit
fb4c22c319ec5320f9a85527eb1a4130954846f5
doc/additionalDoc/introduction.h
View file @
53a7bbf8
...
...
@@ -62,6 +62,6 @@ load classes of entities and create instances of entities.</p>
\li Type-safe connection of input and output signals
\li On-demand signal computation as well as a caching system for signal values
allow fast computation of signal values, which is a critical point for real-time
systems\n
systems\n
*/
include/dynamic-graph/logger.h
View file @
53a7bbf8
...
...
@@ -266,9 +266,9 @@ protected:
inline
bool
isStreamMsg
(
MsgType
m
)
{
return
(
m
&
MSG_TYPE_STREAM_BIT
);
}
/** Check whether a message of type \p m and from \p c lineId should be
accepted.
* \note If \p m is a stream type, the internal counter associated
to \p lineId
*
is updated.
/** Check whether a message of type \p m and from \p c lineId should be
*
accepted.
\note If \p m is a stream type, the internal counter associated
*
to \p lineId
is updated.
*/
bool
acceptMsg
(
MsgType
m
,
const
std
::
string
&
lineId
)
{
// If more verbose than the current verbosity level
...
...
package.xml
View file @
53a7bbf8
<?xml version="1.0"?>
<package
format=
"3"
>
<name>
dynamic-graph
</name>
<version>
4.2.
1
</version>
<version>
4.2.
2
</version>
<description>
Dynamic graph library
</description>
...
...
tests/value.cpp
View file @
53a7bbf8
...
...
@@ -64,7 +64,8 @@ BOOST_AUTO_TEST_CASE(value_exceptions) {
bool
res
=
false
;
try
{
int
aInt
(
anet
);
aInt
++
;
// silence unused variable warnings to have a stable release in the ros buildfarm
aInt
++
;
// silence unused variable warnings to have a stable release in the
// ros buildfarm
}
catch
(
const
dg
::
ExceptionAbstract
&
aea
)
{
output
<<
aea
.
getExceptionName
();
output2
<<
aea
.
what
();
...
...
@@ -79,7 +80,8 @@ BOOST_AUTO_TEST_CASE(value_exceptions) {
res
=
false
;
try
{
bool
abool
(
anet
);
abool
=!
abool
;
// silence unused variable warnings to have a stable release in the ros buildfarm
abool
=
!
abool
;
// silence unused variable warnings to have a stable release
// in the ros buildfarm
}
catch
(
const
dg
::
ExceptionAbstract
&
aea
)
{
res
=
(
aea
.
getCode
()
==
dg
::
ExceptionAbstract
::
TOOLS
);
}
...
...
@@ -90,7 +92,8 @@ BOOST_AUTO_TEST_CASE(value_exceptions) {
res
=
false
;
try
{
unsigned
int
aint
(
anet
);
aint
++
;
// silence unused variable warnings to have a stable release in the ros buildfarm
aint
++
;
// silence unused variable warnings to have a stable release in the
// ros buildfarm
}
catch
(
const
dg
::
ExceptionAbstract
&
aea
)
{
res
=
(
aea
.
getCode
()
==
dg
::
ExceptionAbstract
::
TOOLS
);
}
...
...
@@ -101,7 +104,8 @@ BOOST_AUTO_TEST_CASE(value_exceptions) {
res
=
false
;
try
{
double
adouble
(
anet
);
adouble
++
;
// silence unused variable warnings to have a stable release in the ros buildfarm
adouble
++
;
// silence unused variable warnings to have a stable release in
// the ros buildfarm
}
catch
(
const
dg
::
ExceptionAbstract
&
aea
)
{
res
=
(
aea
.
getCode
()
==
dg
::
ExceptionAbstract
::
TOOLS
);
}
...
...
@@ -112,7 +116,8 @@ BOOST_AUTO_TEST_CASE(value_exceptions) {
res
=
false
;
try
{
float
afloat
(
anet
);
afloat
++
;
// silence unused variable warnings to have a stable release in the ros buildfarm
afloat
++
;
// silence unused variable warnings to have a stable release in
// the ros buildfarm
}
catch
(
const
dg
::
ExceptionAbstract
&
aea
)
{
res
=
(
aea
.
getCode
()
==
dg
::
ExceptionAbstract
::
TOOLS
);
}
...
...
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