Skip to content

Commit 53a7bbf

Browse files
committed
Merge branch 'master' into devel
2 parents 7ad3c60 + 3f6d48d commit 53a7bbf

File tree

5 files changed

+16
-11
lines changed

5 files changed

+16
-11
lines changed

doc/additionalDoc/introduction.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,6 @@ load classes of entities and create instances of entities.</p>
6262
\li Type-safe connection of input and output signals
6363
\li On-demand signal computation as well as a caching system for signal values
6464
allow fast computation of signal values, which is a critical point for real-time
65-
systems\n
65+
systems\n
6666
6767
*/

include/dynamic-graph/logger.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -266,9 +266,9 @@ class Logger {
266266

267267
inline bool isStreamMsg(MsgType m) { return (m & MSG_TYPE_STREAM_BIT); }
268268

269-
/** Check whether a message of type \p m and from \p c lineId should be accepted.
270-
* \note If \p m is a stream type, the internal counter associated to \p lineId
271-
* is updated.
269+
/** Check whether a message of type \p m and from \p c lineId should be
270+
* accepted. \note If \p m is a stream type, the internal counter associated
271+
* to \p lineId is updated.
272272
*/
273273
bool acceptMsg(MsgType m, const std::string &lineId) {
274274
// If more verbose than the current verbosity level

package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0"?>
22
<package format="3">
33
<name>dynamic-graph</name>
4-
<version>4.2.1</version>
4+
<version>4.2.2</version>
55
<description>
66
Dynamic graph library
77
</description>

tests/value.cpp

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,8 @@ BOOST_AUTO_TEST_CASE(value_exceptions) {
6464
bool res = false;
6565
try {
6666
int aInt(anet);
67-
aInt++; // silence unused variable warnings to have a stable release in the ros buildfarm
67+
aInt++; // silence unused variable warnings to have a stable release in the
68+
// ros buildfarm
6869
} catch (const dg::ExceptionAbstract &aea) {
6970
output << aea.getExceptionName();
7071
output2 << aea.what();
@@ -79,7 +80,8 @@ BOOST_AUTO_TEST_CASE(value_exceptions) {
7980
res = false;
8081
try {
8182
bool abool(anet);
82-
abool=!abool; // silence unused variable warnings to have a stable release in the ros buildfarm
83+
abool = !abool; // silence unused variable warnings to have a stable release
84+
// in the ros buildfarm
8385
} catch (const dg::ExceptionAbstract &aea) {
8486
res = (aea.getCode() == dg::ExceptionAbstract::TOOLS);
8587
}
@@ -90,7 +92,8 @@ BOOST_AUTO_TEST_CASE(value_exceptions) {
9092
res = false;
9193
try {
9294
unsigned int aint(anet);
93-
aint++; // silence unused variable warnings to have a stable release in the ros buildfarm
95+
aint++; // silence unused variable warnings to have a stable release in the
96+
// ros buildfarm
9497
} catch (const dg::ExceptionAbstract &aea) {
9598
res = (aea.getCode() == dg::ExceptionAbstract::TOOLS);
9699
}
@@ -101,7 +104,8 @@ BOOST_AUTO_TEST_CASE(value_exceptions) {
101104
res = false;
102105
try {
103106
double adouble(anet);
104-
adouble++; // silence unused variable warnings to have a stable release in the ros buildfarm
107+
adouble++; // silence unused variable warnings to have a stable release in
108+
// the ros buildfarm
105109
} catch (const dg::ExceptionAbstract &aea) {
106110
res = (aea.getCode() == dg::ExceptionAbstract::TOOLS);
107111
}
@@ -112,7 +116,8 @@ BOOST_AUTO_TEST_CASE(value_exceptions) {
112116
res = false;
113117
try {
114118
float afloat(anet);
115-
afloat++; // silence unused variable warnings to have a stable release in the ros buildfarm
119+
afloat++; // silence unused variable warnings to have a stable release in
120+
// the ros buildfarm
116121
} catch (const dg::ExceptionAbstract &aea) {
117122
res = (aea.getCode() == dg::ExceptionAbstract::TOOLS);
118123
}

0 commit comments

Comments
 (0)