From 8efb73f5d2a84d70aae134dcf45cac87c70fa76f Mon Sep 17 00:00:00 2001 From: Roberto Raggi Date: Tue, 10 Nov 2009 12:37:46 +0100 Subject: Removed TemplateArgumentListAST Done with Erik Verbruggen --- 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 19e2eedf98..bcd8b3f180 100644 --- a/src/shared/cplusplus/CheckName.cpp +++ b/src/shared/cplusplus/CheckName.cpp @@ -361,7 +361,7 @@ bool CheckName::visit(TemplateIdAST *ast) std::vector templateArguments; for (TemplateArgumentListAST *it = ast->template_arguments; it; it = it->next) { - ExpressionAST *arg = it->template_argument; + ExpressionAST *arg = it->value; FullySpecifiedType exprTy = semantic()->check(arg, _scope); templateArguments.push_back(exprTy); } -- cgit v1.2.1