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 d3b3e42 commit 002fc4aCopy full SHA for 002fc4a
cpp/autosar/test/rules/M8-5-2/test.cpp
@@ -61,7 +61,7 @@ void test() {
61
template <class T> bool all_of(std::initializer_list<T>);
62
63
template <typename... Args> constexpr bool all_of(Args... args) noexcept {
64
- return all_of({args...});
+ return all_of({args...}); // COMPLIANT - explicitly initialized via varargs
65
}
66
67
void test_all_of() { all_of(true, false, false); }
0 commit comments