Skip to content

Commit 0f64260

Browse files
committed
Correct formatting in test
1 parent ac61df7 commit 0f64260

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpp/autosar/test/rules/M0-1-3/test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ int foo() {
107107
template <typename T> static T another_templ_function() { return T(); }
108108

109109
template <typename T, typename First, typename... Rest>
110-
static T another_templ_function(const First &first, const Rest &... rest) {
110+
static T another_templ_function(const First &first, const Rest &...rest) {
111111
return first +
112112
another_templ_function<T>(rest...); // COMPLIANT - 'rest' is used here
113113
}

0 commit comments

Comments
 (0)