From d5eea9606162bcccffc6daf722c28a5dcd821c18 Mon Sep 17 00:00:00 2001 From: Andrey Astafyev Date: Sun, 30 Jul 2023 12:00:14 +0300 Subject: [PATCH] =?UTF-8?q?=D0=A4=D0=BE=D1=80=D0=BC=D0=B0=D1=82=D0=B8?= =?UTF-8?q?=D1=80=D0=BE=D0=B2=D0=B0=D0=BD=D0=B8=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/myx-example-object-library/init.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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 );