From 3a2173be0ba1d0eeee6ae39af086d055e34637b7 Mon Sep 17 00:00:00 2001 From: rein0925 Date: Mon, 1 Apr 2024 00:01:02 +0900 Subject: [PATCH] =?UTF-8?q?clang=20format=20=E3=82=92=E3=81=97=E3=81=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/schneider_model.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/schneider_model.cpp b/src/schneider_model.cpp index 4878881..72fb805 100644 --- a/src/schneider_model.cpp +++ b/src/schneider_model.cpp @@ -209,15 +209,15 @@ void Schneider::rotate() { } void Schneider::led(int num) { - //Silence all checks for all lines between the BEGIN and END - // NOLINTBEGIN + // Silence all checks for all lines between the BEGIN and END + // NOLINTBEGIN switch (num) { case 1: led1 = !led1; break; case 2: led2 = !led2; break; case 3: led3 = !led3; break; default: break; - // NOLINTEND } + // NOLINTEND } } // namespace omniboat