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
Stack Of Tasks
dynamic-graph
Commits
f4def3bf
Commit
f4def3bf
authored
Jul 22, 2020
by
Guilhem Saurel
Browse files
format
parent
37aca8ad
Changes
3
Hide whitespace changes
Inline
Side-by-side
doc/additionalDoc/introduction.h
View file @
f4def3bf
...
...
@@ -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 @
f4def3bf
...
...
@@ -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
...
...
tests/value.cpp
View file @
f4def3bf
...
...
@@ -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
Markdown
is supported
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