diff options
author | Semih Yavuz <[email protected]> | 2022-09-12 23:11:29 +0200 |
---|---|---|
committer | Semih Yavuz <[email protected]> | 2022-09-14 19:43:52 +0000 |
commit | 4ad35430dcb0db6571a2ac94bf2640686c9fedf8 (patch) | |
tree | 85a43ece582db1c1f1c99d4ad9e10dd8d4809ad4 /src/qml/jsruntime/qv4context.cpp | |
parent | a0b5d0518d50a73ad02b43a8a770a4b6435a5db2 (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 <[email protected]>
Diffstat (limited to 'src/qml/jsruntime/qv4context.cpp')
-rw-r--r-- | src/qml/jsruntime/qv4context.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/qml/jsruntime/qv4context.cpp b/src/qml/jsruntime/qv4context.cpp index 6a2b4f37e0..b702dbe2db 100644 --- a/src/qml/jsruntime/qv4context.cpp +++ b/src/qml/jsruntime/qv4context.cpp @@ -2,16 +2,12 @@ // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only #include <QString> -#include "qv4debugging_p.h" #include <qv4context_p.h> #include <qv4object_p.h> #include <qv4objectproto_p.h> #include <private/qv4mm_p.h> #include <qv4argumentsobject_p.h> #include "qv4function_p.h" -#include "qv4errorobject_p.h" -#include "qv4string_p.h" -#include "qv4qmlcontext_p.h" #include "qv4stackframe_p.h" #include "qv4symbol_p.h" |