diff options
author | Ulf Hermann <[email protected]> | 2023-05-15 09:23:03 +0200 |
---|---|---|
committer | Ulf Hermann <[email protected]> | 2023-05-17 09:26:50 +0200 |
commit | d83c35a2e6216d2568f005c2260a06991134d8cf (patch) | |
tree | d683d245699d1ee6253f61f7b9dcb4c3b797c103 /src/qml/jsruntime/qv4lookup.cpp | |
parent | f69b5f260e301dc01c7d85cd1cb9d45582ef3d6d (diff) |
Move ScopedStackFrame into qv4stackframe_p.h
This is where it belongs. We need to apply some tricks to avoid
cyclic includes, but that's better than what we have so far.
Also, sort and clean up the includes in the affected files.
Change-Id: Ia7a957d06c0ca284045d831417740c3f9920bc92
Reviewed-by: Fabian Kosmale <[email protected]>
Reviewed-by: Qt CI Bot <[email protected]>
Diffstat (limited to 'src/qml/jsruntime/qv4lookup.cpp')
-rw-r--r-- | src/qml/jsruntime/qv4lookup.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/qml/jsruntime/qv4lookup.cpp b/src/qml/jsruntime/qv4lookup.cpp index ff6b349ad9..4d4036d826 100644 --- a/src/qml/jsruntime/qv4lookup.cpp +++ b/src/qml/jsruntime/qv4lookup.cpp @@ -1,10 +1,12 @@ // Copyright (C) 2016 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only -#include "qv4lookup_p.h" -#include "qv4functionobject_p.h" + +#include <private/qv4functionobject_p.h> #include <private/qv4identifiertable_p.h> -#include <QtQml/private/qv4runtime_p.h> -#include <QtQml/private/qv4qobjectwrapper_p.h> +#include <private/qv4lookup_p.h> +#include <private/qv4qobjectwrapper_p.h> +#include <private/qv4runtime_p.h> +#include <private/qv4stackframe_p.h> QT_BEGIN_NAMESPACE |