Update cpp/ql/lib/semmle/code/cpp/TypedefType.qll

This commit is contained in:
Jeroen Ketema
2026-05-18 15:04:03 +02:00
committed by GitHub
parent 7636bf560e
commit d14b8064b0

View File

@@ -122,7 +122,7 @@ class AliasTemplateType extends TypeAliasType {
* `MyAliasTemplate<int>` and `MyAliasTemplate<long>`:
* ```
* template<typename T>
* using MyAliasTemplate = ;
* using MyAliasTemplate = ...;
*
* MyAliasTemplate<int> instance1;
*