diff options
author | Roberto Raggi <roberto.raggi@nokia.com> | 2010-08-16 11:38:34 +0200 |
---|---|---|
committer | Roberto Raggi <roberto.raggi@nokia.com> | 2010-08-16 11:38:34 +0200 |
commit | 2d683cd2c30afa792df7b9d5095c89b88e3d2dfd (patch) | |
tree | 2bee81a80e0aa684ac59e5a9c878c5d6f884c885 /src/shared/cplusplus/ASTClone.cpp | |
parent | 2e0cb24cc99123af9ec01c7d6233ceb245fb5583 (diff) | |
download | qt-creator-2d683cd2c30afa792df7b9d5095c89b88e3d2dfd.tar.gz |
Renamed DeclaratorAST::equals_token
Diffstat (limited to 'src/shared/cplusplus/ASTClone.cpp')
-rw-r--r-- | src/shared/cplusplus/ASTClone.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/cplusplus/ASTClone.cpp b/src/shared/cplusplus/ASTClone.cpp index 9b837e1384..27cc47605d 100644 --- a/src/shared/cplusplus/ASTClone.cpp +++ b/src/shared/cplusplus/ASTClone.cpp @@ -119,7 +119,7 @@ DeclaratorAST *DeclaratorAST::clone(MemoryPool *pool) const for (SpecifierListAST *iter = post_attribute_list, **ast_iter = &ast->post_attribute_list; iter; iter = iter->next, ast_iter = &(*ast_iter)->next) *ast_iter = new (pool) SpecifierListAST((iter->value) ? iter->value->clone(pool) : 0); - ast->equals_token = equals_token; + ast->equal_token = equal_token; if (initializer) ast->initializer = initializer->clone(pool); return ast; |