Skip to content

Commit ccd3681

Browse files
committed
C++: Expand QLDoc of TemplateParameterBase
1 parent b7d1da8 commit ccd3681

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cpp/ql/lib/semmle/code/cpp/Type.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1673,9 +1673,9 @@ abstract private class TemplateParameterImpl extends Locatable {
16731673
/**
16741674
* A C++ template parameter.
16751675
*
1676-
* In the example below, `T` and `I` are template parameters:
1676+
* In the example below, `T`, `TT`, and `I` are template parameters:
16771677
* ```
1678-
* template <class T, int I>
1678+
* template <class T, template<typename> TT, int I>
16791679
* class C { };
16801680
* ```
16811681
*/

0 commit comments

Comments
 (0)