Skip to content

Commit 002fc4a

Browse files
committed
Add COMPLIANT marker
1 parent d3b3e42 commit 002fc4a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpp/autosar/test/rules/M8-5-2/test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ void test() {
6161
template <class T> bool all_of(std::initializer_list<T>);
6262

6363
template <typename... Args> constexpr bool all_of(Args... args) noexcept {
64-
return all_of({args...});
64+
return all_of({args...}); // COMPLIANT - explicitly initialized via varargs
6565
}
6666

6767
void test_all_of() { all_of(true, false, false); }

0 commit comments

Comments
 (0)