aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4executableallocator_p.h
diff options
context:
space:
mode:
authorSemih Yavuz <semih.yavuz@qt.io>2022-09-12 23:11:29 +0200
committerSemih Yavuz <semih.yavuz@qt.io>2022-09-14 19:43:52 +0000
commit4ad35430dcb0db6571a2ac94bf2640686c9fedf8 (patch)
tree85a43ece582db1c1f1c99d4ad9e10dd8d4809ad4 /src/qml/jsruntime/qv4executableallocator_p.h
parenta0b5d0518d50a73ad02b43a8a770a4b6435a5db2 (diff)
QtQml: Remove unused includes in qml, first part
Drop unnecessary includes detected by clangd-iwyu. Add new includes due to the transitive includes. Also, some of the includes were detected as unused even if they were actually in use. In those cases, use angular brackets instead of "" which deceives the tool not to complain. Affected subfolders: Debugger, Compiler, JsApi, JsRuntime, Memory, Parser Task-number: QTBUG-106473 Change-Id: I01d996a2a2ba31cbbc5f60f5454c8f850298f528 Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io>
Diffstat (limited to 'src/qml/jsruntime/qv4executableallocator_p.h')
-rw-r--r--src/qml/jsruntime/qv4executableallocator_p.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qml/jsruntime/qv4executableallocator_p.h b/src/qml/jsruntime/qv4executableallocator_p.h
index d6551599e7..de9c0c7cd5 100644
--- a/src/qml/jsruntime/qv4executableallocator_p.h
+++ b/src/qml/jsruntime/qv4executableallocator_p.h
@@ -15,14 +15,14 @@
// We mean it.
//
-#include "qv4global_p.h"
-
#include <QMultiMap>
#include <QHash>
#include <QVector>
#include <QByteArray>
#include <QMutex>
+#include <QtQml/private/qtqmlglobal_p.h>
+
namespace WTF {
class PageAllocation;
}