mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-26 01:46:06 +00:00
Remove unecessary methods
The base class calls VisitExpr llvm-svn: 348099
This commit is contained in:
parent
ff13c24cfe
commit
98cd41f928
@ -537,8 +537,6 @@ namespace {
|
||||
void VisitFloatingLiteral(const FloatingLiteral *Node);
|
||||
void VisitStringLiteral(const StringLiteral *Str);
|
||||
void VisitInitListExpr(const InitListExpr *ILE);
|
||||
void VisitArrayInitLoopExpr(const ArrayInitLoopExpr *ILE);
|
||||
void VisitArrayInitIndexExpr(const ArrayInitIndexExpr *ILE);
|
||||
void VisitUnaryOperator(const UnaryOperator *Node);
|
||||
void VisitUnaryExprOrTypeTraitExpr(const UnaryExprOrTypeTraitExpr *Node);
|
||||
void VisitMemberExpr(const MemberExpr *Node);
|
||||
@ -2285,14 +2283,6 @@ void ASTDumper::VisitInitListExpr(const InitListExpr *ILE) {
|
||||
}
|
||||
}
|
||||
|
||||
void ASTDumper::VisitArrayInitLoopExpr(const ArrayInitLoopExpr *E) {
|
||||
VisitExpr(E);
|
||||
}
|
||||
|
||||
void ASTDumper::VisitArrayInitIndexExpr(const ArrayInitIndexExpr *E) {
|
||||
VisitExpr(E);
|
||||
}
|
||||
|
||||
void ASTDumper::VisitUnaryOperator(const UnaryOperator *Node) {
|
||||
VisitExpr(Node);
|
||||
OS << " " << (Node->isPostfix() ? "postfix" : "prefix")
|
||||
|
Loading…
x
Reference in New Issue
Block a user