diff --git a/src/myx-example-object-library/init.cpp b/src/myx-example-object-library/init.cpp index 8a5c1ca..cd169ad 100644 --- a/src/myx-example-object-library/init.cpp +++ b/src/myx-example-object-library/init.cpp @@ -6,8 +6,7 @@ int32_t init( int32_t v = 0 ) { int32_t s = 0; - for ( auto i = std::abs( v ); i > 0; i-- ) - { + for ( auto i = std::abs( v ); i > 0; i-- ) { s += i; } return( s );