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 3feee50 commit 3a20cccCopy full SHA for 3a20ccc
cpp/autosar/test/rules/A7-1-1/test.cpp
@@ -90,7 +90,7 @@ void fp_621() { recurse_var<true, true, true>; }
90
void variadic_forwarding() {}
91
92
template <typename T, typename... Args>
93
-void variadic_forwarding(T &&first, Args &&... rest) {
+void variadic_forwarding(T &&first, Args &&...rest) {
94
first;
95
variadic_forwarding(std::forward<Args>(rest)...);
96
}
0 commit comments