Skip to content

Commit

Permalink
Formatting fix in test.
Browse files Browse the repository at this point in the history
  • Loading branch information
fjatWbyT authored Jan 22, 2025
1 parent 3180bfb commit dd892ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/autosar/test/rules/A7-1-1/test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ void fp_621() { recurse_var<true, true, true>; }
void variadic_forwarding() {}

template <typename T, typename... Args>
void variadic_forwarding(T &&first, Args &&...rest) {
void variadic_forwarding(T &&first, Args &&... rest) {
first;
variadic_forwarding(std::forward<Args>(rest)...);
}
Expand Down

0 comments on commit dd892ff

Please sign in to comment.