diff options
author | Roberto Raggi <roberto.raggi@nokia.com> | 2009-11-10 12:48:33 +0100 |
---|---|---|
committer | Roberto Raggi <roberto.raggi@nokia.com> | 2009-11-10 16:20:11 +0100 |
commit | 4c246763627cbc69b09ebe2ac1ea8be16669569f (patch) | |
tree | 9f8cc53798f31dd58db4da476f514cbc47f2c42c /src/shared/cplusplus/Parser.cpp | |
parent | 98802456b3b7573e0f76779c9ed4fb2007a8612d (diff) | |
download | qt-creator-4c246763627cbc69b09ebe2ac1ea8be16669569f.tar.gz |
Removed ObjCMessageArgumentDeclarationListAST
Done with Erik Verbruggen
Diffstat (limited to 'src/shared/cplusplus/Parser.cpp')
-rw-r--r-- | src/shared/cplusplus/Parser.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shared/cplusplus/Parser.cpp b/src/shared/cplusplus/Parser.cpp index 4f31a9e07d..cec6388eee 100644 --- a/src/shared/cplusplus/Parser.cpp +++ b/src/shared/cplusplus/Parser.cpp @@ -4899,7 +4899,7 @@ bool Parser::parseObjCMethodPrototype(ObjCMethodPrototypeAST *&node) sel->selector_arguments->value = argument; ast->arguments = new (_pool) ObjCMessageArgumentDeclarationListAST; - ast->arguments->argument_declaration = declaration; + ast->arguments->value = declaration; ObjCMessageArgumentDeclarationListAST *lastArg = ast->arguments; while (parseObjCKeywordDeclaration(argument, declaration)) { @@ -4909,7 +4909,7 @@ bool Parser::parseObjCMethodPrototype(ObjCMethodPrototypeAST *&node) lastArg->next = new (_pool) ObjCMessageArgumentDeclarationListAST; lastArg = lastArg->next; - lastArg->argument_declaration = declaration; + lastArg->value = declaration; } while (LA() == T_COMMA) { |