aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/compiler
diff options
context:
space:
mode:
authorFabian Kosmale <fabian.kosmale@qt.io>2021-08-05 11:15:43 +0200
committerFabian Kosmale <fabian.kosmale@qt.io>2021-08-05 11:44:42 +0200
commit32b27f24a94a5b1a3d125b5b9f97109c4ca9c5c6 (patch)
treefda0fa987b05bcee44d0c43b7280c021f354f5ba /src/qml/compiler
parentb8fc169671d046f16c8a77ec9411d4eb0f0416e3 (diff)
CodegenWarningInterface: Add missing virtual dtor
Change-Id: Icdd93eb63c4d73675cfbf7b3291a7c5c9eece216 Reviewed-by: Maximilian Goldstein <max.goldstein@qt.io> Reviewed-by: Andrei Golubev <andrei.golubev@qt.io>
Diffstat (limited to 'src/qml/compiler')
-rw-r--r--src/qml/compiler/qv4codegen_p.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/qml/compiler/qv4codegen_p.h b/src/qml/compiler/qv4codegen_p.h
index 6494ce39a6..3ff3ed0460 100644
--- a/src/qml/compiler/qv4codegen_p.h
+++ b/src/qml/compiler/qv4codegen_p.h
@@ -86,6 +86,7 @@ public:
virtual void reportVarUsedBeforeDeclaration(const QString &name, const QString &fileName,
QQmlJS::SourceLocation declarationLocation,
QQmlJS::SourceLocation accessLocation);
+ virtual ~CodegenWarningInterface() = default;
};
static inline CodegenWarningInterface *defaultCodegenWarningInterface()