@@ -64,7 +64,8 @@ BOOST_AUTO_TEST_CASE(value_exceptions) {
64
64
bool res = false ;
65
65
try {
66
66
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
68
69
} catch (const dg::ExceptionAbstract &aea) {
69
70
output << aea.getExceptionName ();
70
71
output2 << aea.what ();
@@ -79,7 +80,8 @@ BOOST_AUTO_TEST_CASE(value_exceptions) {
79
80
res = false ;
80
81
try {
81
82
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
83
85
} catch (const dg::ExceptionAbstract &aea) {
84
86
res = (aea.getCode () == dg::ExceptionAbstract::TOOLS);
85
87
}
@@ -90,7 +92,8 @@ BOOST_AUTO_TEST_CASE(value_exceptions) {
90
92
res = false ;
91
93
try {
92
94
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
94
97
} catch (const dg::ExceptionAbstract &aea) {
95
98
res = (aea.getCode () == dg::ExceptionAbstract::TOOLS);
96
99
}
@@ -101,7 +104,8 @@ BOOST_AUTO_TEST_CASE(value_exceptions) {
101
104
res = false ;
102
105
try {
103
106
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
105
109
} catch (const dg::ExceptionAbstract &aea) {
106
110
res = (aea.getCode () == dg::ExceptionAbstract::TOOLS);
107
111
}
@@ -112,7 +116,8 @@ BOOST_AUTO_TEST_CASE(value_exceptions) {
112
116
res = false ;
113
117
try {
114
118
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
116
121
} catch (const dg::ExceptionAbstract &aea) {
117
122
res = (aea.getCode () == dg::ExceptionAbstract::TOOLS);
118
123
}
0 commit comments