aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4debugging_p.h
diff options
context:
space:
mode:
authorMarc Mutz <marc.mutz@qt.io>2022-05-09 15:40:41 +0200
committerMarc Mutz <marc.mutz@qt.io>2022-05-09 23:42:21 +0200
commitc2b1aad7918d23f3094525c0a57ae4c9fd88b81e (patch)
treeea89ee84f7e852621289c92a3db5d7ff6f5437d1 /src/qml/jsruntime/qv4debugging_p.h
parentd432e5621a0a163ea5609229ef94f83235de4050 (diff)
Add a TU for QV4::Debugging::Debugger to de-inline dtor & includemocs
Destructors of polymorphic classes should be out-of-line. Header moc files should be included into the implementation files. Both need a TU, so add one. Task-number: QTBUG-102948 Task-number: QTBUG-45582 Change-Id: Ia596ec1cab1e4c1f91e42cf217a7df7cbd0d91ad Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
Diffstat (limited to 'src/qml/jsruntime/qv4debugging_p.h')
-rw-r--r--src/qml/jsruntime/qv4debugging_p.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/jsruntime/qv4debugging_p.h b/src/qml/jsruntime/qv4debugging_p.h
index 52263105fa..ee13f5e0bd 100644
--- a/src/qml/jsruntime/qv4debugging_p.h
+++ b/src/qml/jsruntime/qv4debugging_p.h
@@ -79,7 +79,7 @@ class Q_QML_EXPORT Debugger : public QObject
Q_OBJECT
public:
- ~Debugger() override {}
+ ~Debugger() override;
virtual bool pauseAtNextOpportunity() const = 0;
virtual void maybeBreakAtInstruction() = 0;
virtual void enteringFunction() = 0;