Skip to content

Commit 3062fe9

Browse files
author
Nikita Kraiouchkine
committed
Fix test.cpp formatting
1 parent 195f9be commit 3062fe9

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

cpp/autosar/test/rules/A0-1-6/test.cpp

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -104,9 +104,7 @@ template <class T> class X { // COMPLIANT - template class never instantiated
104104
template <class T> class Y {}; // COMPLIANT - used in the test case below
105105

106106
// Alias templates
107-
template <typename T> using Z = Y<T>; // COMPLIANT - used below
107+
template <typename T> using Z = Y<T>; // COMPLIANT - used below
108108
template <typename T> using AA = Y<T>; // NON_COMPLIANT - never instantiated
109109

110-
void test_alias_template() {
111-
Z<int> v;
112-
}
110+
void test_alias_template() { Z<int> v; }

0 commit comments

Comments
 (0)