Skip to content

Commit

Permalink
clang format をした
Browse files Browse the repository at this point in the history
  • Loading branch information
rein0925 committed Mar 31, 2024
1 parent 3fcaf9a commit 3a2173b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/schneider_model.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 3a2173b

Please sign in to comment.