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