Skip to content

Commit 2031151

Browse files
mbaludaCopilot
andauthored
Potential fix for pull request finding
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
1 parent 1cea4ea commit 2031151

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • cpp/common/test/rules/unusedtypedeclarations

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ template <class T> class Y {}; // COMPLIANT - used in the test case below
109109
// Alias templates
110110
template <typename T> using Z = Y<T>; // COMPLIANT - used below
111111
template <typename T>
112-
using AA = Y<T>; // NON_COMPLIANT[FALSE_NEGATIVE] - never instantiated
112+
using AA = Y<T>; // NON_COMPLIANT - never instantiated
113113

114114
void test_alias_template() { Z<int> v; }
115115

0 commit comments

Comments
 (0)