We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac61df7 commit 0f64260Copy full SHA for 0f64260
cpp/autosar/test/rules/M0-1-3/test.cpp
@@ -107,7 +107,7 @@ int foo() {
107
template <typename T> static T another_templ_function() { return T(); }
108
109
template <typename T, typename First, typename... Rest>
110
-static T another_templ_function(const First &first, const Rest &... rest) {
+static T another_templ_function(const First &first, const Rest &...rest) {
111
return first +
112
another_templ_function<T>(rest...); // COMPLIANT - 'rest' is used here
113
}
0 commit comments