diff options
| author | Christian Kamm <[email protected]> | 2012-09-12 12:41:46 +0200 |
|---|---|---|
| committer | hjk <[email protected]> | 2012-09-17 14:53:20 +0200 |
| commit | 23a11e2ddbd4facc9b21f40dcd5328fc504f7ec7 (patch) | |
| tree | 745efdcfaf51a6d03813221a851e54cabeb8da1e /src/libs/cplusplus/FindUsages.cpp | |
| parent | 813846232bf5185b6cd3346f703b8172114c9943 (diff) | |
C++: Rename NewPlacementAST to ExpressionListParenAST.
It'll be reused as the initializer expression for declarators
that are followed by "( expression-list )".
Change-Id: I6c76a76641941874ef1ed21daa7b6e057c6d170f
Reviewed-by: hjk <[email protected]>
Diffstat (limited to 'src/libs/cplusplus/FindUsages.cpp')
| -rw-r--r-- | src/libs/cplusplus/FindUsages.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libs/cplusplus/FindUsages.cpp b/src/libs/cplusplus/FindUsages.cpp index 1ae48798d69..0ccbd3953de 100644 --- a/src/libs/cplusplus/FindUsages.cpp +++ b/src/libs/cplusplus/FindUsages.cpp @@ -559,14 +559,14 @@ void FindUsages::nestedNameSpecifier(NestedNameSpecifierAST *ast) // unsigned scope_token = ast->scope_token; } -bool FindUsages::visit(NewPlacementAST *ast) +bool FindUsages::visit(ExpressionListParenAST *ast) { (void) ast; Q_ASSERT(!"unreachable"); return false; } -void FindUsages::newPlacement(NewPlacementAST *ast) +void FindUsages::newPlacement(ExpressionListParenAST *ast) { if (! ast) return; |
