diff options
author | Roberto Raggi <roberto.raggi@nokia.com> | 2010-08-05 17:02:25 +0200 |
---|---|---|
committer | Oswald Buddenhagen <oswald.buddenhagen@nokia.com> | 2010-08-05 17:53:14 +0200 |
commit | 9aa991d6368f011e215a482c60add86f7f6277a2 (patch) | |
tree | 87242f692241f1d5bca27c60ee16fa8937f080c3 /src/shared/cplusplus/CheckDeclarator.cpp | |
parent | 5f440364241f0d1caa00926097ea3a535526e8b0 (diff) | |
download | qt-creator-9aa991d6368f011e215a482c60add86f7f6277a2.tar.gz |
Refactored CPlusPlus::Function.
Diffstat (limited to 'src/shared/cplusplus/CheckDeclarator.cpp')
-rw-r--r-- | src/shared/cplusplus/CheckDeclarator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/cplusplus/CheckDeclarator.cpp b/src/shared/cplusplus/CheckDeclarator.cpp index 8fb80549e6..013f3a308c 100644 --- a/src/shared/cplusplus/CheckDeclarator.cpp +++ b/src/shared/cplusplus/CheckDeclarator.cpp @@ -175,7 +175,7 @@ bool CheckDeclarator::visit(FunctionDeclaratorAST *ast) if (ast->parameters) { DeclarationListAST *parameter_declarations = ast->parameters->parameter_declaration_list; for (DeclarationListAST *decl = parameter_declarations; decl; decl = decl->next) { - semantic()->check(decl->value, fun->arguments()); + semantic()->check(decl->value, fun->members()); } if (ast->parameters->dot_dot_dot_token) |