forked from qt-creator/qt-creator
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 <qthjk@ovi.com>
This commit is contained in:
4
src/libs/3rdparty/cplusplus/Bind.cpp
vendored
4
src/libs/3rdparty/cplusplus/Bind.cpp
vendored
@@ -539,14 +539,14 @@ const Name *Bind::nestedNameSpecifier(NestedNameSpecifierAST *ast)
|
||||
return class_or_namespace_name;
|
||||
}
|
||||
|
||||
bool Bind::visit(NewPlacementAST *ast)
|
||||
bool Bind::visit(ExpressionListParenAST *ast)
|
||||
{
|
||||
(void) ast;
|
||||
assert(!"unreachable");
|
||||
return false;
|
||||
}
|
||||
|
||||
void Bind::newPlacement(NewPlacementAST *ast)
|
||||
void Bind::newPlacement(ExpressionListParenAST *ast)
|
||||
{
|
||||
if (! ast)
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user