From 309545b6de220e590528c132c8d161c81e019edd Mon Sep 17 00:00:00 2001 From: Sami Shalayel Date: Thu, 6 Apr 2023 10:38:30 +0200 Subject: Kill TypeArgument(List) Remove the forward declarations of TypeArgument(List) and its uses. This amends e89a06753c772bd96b3299e03b2f7ad78ffc9fb9 that removed TypeArgument(List)'s definition while leaving its forward declarations and uses around. Change-Id: I1a3e27ce18611beaf84b7c59e01a622f9e7f2477 Reviewed-by: Fabian Kosmale Reviewed-by: Qt CI Bot --- src/qml/parser/qqmljsastvisitor_p.h | 6 ------ 1 file changed, 6 deletions(-) (limited to 'src/qml/parser/qqmljsastvisitor_p.h') diff --git a/src/qml/parser/qqmljsastvisitor_p.h b/src/qml/parser/qqmljsastvisitor_p.h index b4ee47ef0d..97afd5c909 100644 --- a/src/qml/parser/qqmljsastvisitor_p.h +++ b/src/qml/parser/qqmljsastvisitor_p.h @@ -380,9 +380,6 @@ public: virtual bool visit(Type *) = 0; virtual void endVisit(Type *) = 0; - virtual bool visit(TypeArgument *) = 0; - virtual void endVisit(TypeArgument *) = 0; - virtual bool visit(TypeAnnotation *) = 0; virtual void endVisit(TypeAnnotation *) = 0; @@ -726,9 +723,6 @@ public: bool visit(Type *) override { return true; } void endVisit(Type *) override {} - bool visit(TypeArgument *) override { return true; } - void endVisit(TypeArgument *) override {} - bool visit(TypeAnnotation *) override { return true; } void endVisit(TypeAnnotation *) override {} }; -- cgit v1.2.3