Skip to content

Commit

Permalink
C++: Expand QLDoc of TemplateParameterBase
Browse files Browse the repository at this point in the history
  • Loading branch information
jketema committed Dec 18, 2024
1 parent b7d1da8 commit ccd3681
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cpp/ql/lib/semmle/code/cpp/Type.qll
Original file line number Diff line number Diff line change
Expand Up @@ -1673,9 +1673,9 @@ abstract private class TemplateParameterImpl extends Locatable {
/**
* A C++ template parameter.
*
* In the example below, `T` and `I` are template parameters:
* In the example below, `T`, `TT`, and `I` are template parameters:
* ```
* template <class T, int I>
* template <class T, template<typename> TT, int I>
* class C { };
* ```
*/
Expand Down

0 comments on commit ccd3681

Please sign in to comment.