aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/cplusplus/FindUsages.cpp
diff options
context:
space:
mode:
authorChristian Kamm <[email protected]>2012-09-12 12:41:46 +0200
committerhjk <[email protected]>2012-09-17 14:53:20 +0200
commit23a11e2ddbd4facc9b21f40dcd5328fc504f7ec7 (patch)
tree745efdcfaf51a6d03813221a851e54cabeb8da1e /src/libs/cplusplus/FindUsages.cpp
parent813846232bf5185b6cd3346f703b8172114c9943 (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.cpp4
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;