diff options
author | Ulf Hermann <[email protected]> | 2022-05-05 13:58:46 +0200 |
---|---|---|
committer | Ulf Hermann <[email protected]> | 2022-05-06 00:06:29 +0200 |
commit | b100e7423a578bce89cee58056140c47a8d75af2 (patch) | |
tree | 4c969990f7d611c5ae56173f85d047b927d8c24f /src | |
parent | 89b8beecedb2d05ff987a188342bcce9676f3736 (diff) |
QML: Wrap inlinecomponentutils_p.h into Qt namespace
Change-Id: Icda3f73120d61b3483a6e1024ff12e019e799b90
Reviewed-by: Fabian Kosmale <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/qml/inlinecomponentutils_p.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/qml/inlinecomponentutils_p.h b/src/qml/inlinecomponentutils_p.h index 109aef7cb8..ea6b24de26 100644 --- a/src/qml/inlinecomponentutils_p.h +++ b/src/qml/inlinecomponentutils_p.h @@ -53,6 +53,8 @@ #include <private/qv4compileddata_p.h> #include <private/qv4resolvedtypereference_p.h> +QT_BEGIN_NAMESPACE + namespace icutils { struct Node { Node() = default; @@ -162,4 +164,6 @@ inline std::vector<Node> topoSort(std::vector<Node> &nodes, AdjacencyList &adjac } } +QT_END_NAMESPACE + #endif // INLINECOMPONENTUTILS_P_H |