forked from qt-creator/qt-creator
Look at template-type parameters.
This commit is contained in:
@@ -372,6 +372,14 @@ protected:
|
||||
}
|
||||
|
||||
virtual bool visit(TypenameTypeParameterAST *ast)
|
||||
{
|
||||
if (NameAST *nameAst = ast->name)
|
||||
addType(nameAst->name);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
virtual bool visit(TemplateTypeParameterAST *ast)
|
||||
{
|
||||
if (ast->name)
|
||||
addType(ast->name->name);
|
||||
|
||||
Reference in New Issue
Block a user