aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/shared
diff options
context:
space:
mode:
authorDavid Skoland <davidskoland@gmail.com>2020-11-11 12:06:06 +0100
committerDavid Skoland <david.skoland@qt.io>2020-11-18 10:15:17 +0100
commit56bbdccbb99cc9a08a71c3ee1154e764cbfa888b (patch)
tree53be988d854992bc58edef02d14bc7772963ea74 /tests/auto/shared
parentd63ad7efb56452e3ad019c38ddf887ddcc8d338a (diff)
Use metatype and remove unused variable
Change-Id: I709c6a74dc6a3eb0cdd3e94168921274f90df4a4 Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
Diffstat (limited to 'tests/auto/shared')
-rw-r--r--tests/auto/shared/qqmljsastdumper.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/auto/shared/qqmljsastdumper.cpp b/tests/auto/shared/qqmljsastdumper.cpp
index 9573e9bec1..3ffb7519e3 100644
--- a/tests/auto/shared/qqmljsastdumper.cpp
+++ b/tests/auto/shared/qqmljsastdumper.cpp
@@ -423,6 +423,7 @@ void AstDumper::endVisit(UiAnnotationList *) { stop("UiAnnotationList"); }
// QQmlJS
bool AstDumper::visit(AST::TypeExpression *el) {
+ Q_UNUSED(el);
start("TypeExpression");
return true;
}