Skip to content

Commit 610a27b

Browse files
committed
FOrmat test case
1 parent 9d4ac96 commit 610a27b

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

  • cpp/common/test/rules/unusedtypedeclarations

cpp/common/test/rules/unusedtypedeclarations/test.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,9 +107,8 @@ template <class T> class X { // COMPLIANT - template class never instantiated
107107
template <class T> class Y {}; // COMPLIANT - used in the test case below
108108

109109
// Alias templates
110-
template <typename T> using Z = Y<T>; // COMPLIANT - used below
111-
template <typename T>
112-
using AA = Y<T>; // NON_COMPLIANT - never instantiated
110+
template <typename T> using Z = Y<T>; // COMPLIANT - used below
111+
template <typename T> using AA = Y<T>; // NON_COMPLIANT - never instantiated
113112

114113
void test_alias_template() { Z<int> v; }
115114

0 commit comments

Comments
 (0)