diff options
author | Roberto Raggi <roberto.raggi@nokia.com> | 2010-08-11 15:02:08 +0200 |
---|---|---|
committer | Roberto Raggi <roberto.raggi@nokia.com> | 2010-08-11 15:25:20 +0200 |
commit | 8a32c41f6f419f3f3315c679722ca4455fca5155 (patch) | |
tree | da7019323903697f7a6767db2dec159f94466673 /src/shared/cplusplus/CheckName.cpp | |
parent | f3746289b9942acf8f883585c998c024de1a8083 (diff) | |
download | qt-creator-8a32c41f6f419f3f3315c679722ca4455fca5155.tar.gz |
Removed TemplateArgumentList
Diffstat (limited to 'src/shared/cplusplus/CheckName.cpp')
-rw-r--r-- | src/shared/cplusplus/CheckName.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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<FullySpecifiedType> 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); |