@@ -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