aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qtqml.tracepoints
diff options
context:
space:
mode:
authorAntti Määttä <antti.maatta@qt.io>2022-11-23 07:45:33 +0200
committerAntti Määttä <antti.maatta@qt.io>2022-11-23 10:20:27 +0200
commite2fcd32004579f810a31f11851e61af91aa2c898 (patch)
treee56c04840d715c6666c2eebed39a941ae500ae5b /src/qml/qtqml.tracepoints
parent99047ae219ff6689da38cc988a25030fece655da (diff)
Fix forward declaration class missmatch
When -trace is set, fix warning about class vs struct missmatch with forward declaration in the tracepoints file. Change-Id: I62aa5a4ba4ac8cdd2938787d66660db74f566e55 Reviewed-by: Tomi Korpipää <tomi.korpipaa@qt.io> Reviewed-by: Hatem ElKharashy <hatem.elkharashy@qt.io> Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
Diffstat (limited to 'src/qml/qtqml.tracepoints')
-rw-r--r--src/qml/qtqml.tracepoints6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/qml/qtqml.tracepoints b/src/qml/qtqml.tracepoints
index 1043d3bae3..20fac87660 100644
--- a/src/qml/qtqml.tracepoints
+++ b/src/qml/qtqml.tracepoints
@@ -1,9 +1,9 @@
{
namespace QV4 {
-class ExecutionEngine;
+struct ExecutionEngine;
namespace CompiledData {
-class CompilationUnit;
-class Object;
+struct CompilationUnit;
+struct Object;
} // CompiledData
} // QV4
class QQmlEngine;