aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4engine.cpp
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2024-12-10 08:55:08 +0100
committerUlf Hermann <ulf.hermann@qt.io>2024-12-12 08:00:42 +0100
commitedfc659a332c5c8622a1b93a4b6eec2d69318f6a (patch)
tree7fde378b207b16b38c2e0498daf2fd298a52a37f /src/qml/jsruntime/qv4engine.cpp
parentc4fd9a22a53fa2a963bd559233e8818c6864895c (diff)
QtQml: Initialize ExecutionEngine members inline where possible
Change-Id: Ie343db2be7d3bdd15e5967f14f810bea03831923 Reviewed-by: Sami Shalayel <sami.shalayel@qt.io>
Diffstat (limited to 'src/qml/jsruntime/qv4engine.cpp')
-rw-r--r--src/qml/jsruntime/qv4engine.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/qml/jsruntime/qv4engine.cpp b/src/qml/jsruntime/qv4engine.cpp
index 0f896210cc..4b7572f1c2 100644
--- a/src/qml/jsruntime/qv4engine.cpp
+++ b/src/qml/jsruntime/qv4engine.cpp
@@ -344,18 +344,11 @@ ExecutionEngine::ExecutionEngine(QJSEngine *jsEngine)
, bumperPointerAllocator(new WTF::BumpPointerAllocator)
, jsStack(new WTF::PageAllocation)
, gcStack(new WTF::PageAllocation)
- , globalCode(nullptr)
, publicEngine(jsEngine)
, m_engineId(engineSerial.fetchAndAddOrdered(2))
- , regExpCache(nullptr)
- , m_multiplyWrappedQObjects(nullptr)
#if QT_CONFIG(qml_jit)
, m_canAllocateExecutableMemory(OSAllocator::canAllocateExecutableMemory())
#endif
-#if QT_CONFIG(qml_xml_http_request)
- , m_xmlHttpRequestData(nullptr)
-#endif
- , m_qmlEngine(nullptr)
{
if (m_engineId == 1) {
initializeStaticMembers();