Skip to content

Commit 51ff26c

Browse files
committed
clang-format
1 parent 23a1bc3 commit 51ff26c

File tree

1 file changed

+3
-3
lines changed
  • cpp/common/test/rules/unusedparameter

1 file changed

+3
-3
lines changed

cpp/common/test/rules/unusedparameter/test.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ class A {
1919
};
2020

2121
void f(
22-
int i, // COMPLIANT
23-
int j, // COMPLIANT
24-
int k, // COMPLIANT
22+
int i, // COMPLIANT
23+
int j, // COMPLIANT
24+
int k, // COMPLIANT
2525
[[maybe_unused]] int l // COMPLIANT: explicitly stated as [[maybe_unused]]
2626
) {
2727
static_cast<void>(i); // COMPLIANT: explicitly ignored by static_cast to void

0 commit comments

Comments
 (0)