From 8a32c41f6f419f3f3315c679722ca4455fca5155 Mon Sep 17 00:00:00 2001 From: Roberto Raggi Date: Wed, 11 Aug 2010 15:02:08 +0200 Subject: Removed TemplateArgumentList --- src/shared/cplusplus/CheckName.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/shared/cplusplus/CheckName.cpp') diff --git a/src/shared/cplusplus/CheckName.cpp b/src/shared/cplusplus/CheckName.cpp index c1a27b2166..4e67a6124c 100644 --- a/src/shared/cplusplus/CheckName.cpp +++ b/src/shared/cplusplus/CheckName.cpp @@ -356,7 +356,7 @@ bool CheckName::visit(TemplateIdAST *ast) { const Identifier *id = identifier(ast->identifier_token); std::vector templateArguments; - for (TemplateArgumentListAST *it = ast->template_argument_list; it; + for (ExpressionListAST *it = ast->template_argument_list; it; it = it->next) { ExpressionAST *arg = it->value; FullySpecifiedType exprTy = semantic()->check(arg, _scope); -- cgit v1.2.1