aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4stackframe_p.h
diff options
context:
space:
mode:
authorAlexey Edelev <alexey.edelev@qt.io>2023-11-23 08:51:37 +0100
committerAlexey Edelev <alexey.edelev@qt.io>2024-01-11 23:03:19 +0100
commit5c5a2c24847c636857153078e4716fcb242f394d (patch)
treedad8c92017310f7acf41c46f4ace9d6928ce8312 /src/qml/jsruntime/qv4stackframe_p.h
parent26096b2a323c6e561766e15b62b810dc654ad317 (diff)
Remove the use of Q_QML_PRIVATE_EXPORT
Task-number: QTBUG-117983 Change-Id: I5790f01d614cd70c7fcc9bd817ec6ace3f3e3730 Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
Diffstat (limited to 'src/qml/jsruntime/qv4stackframe_p.h')
-rw-r--r--src/qml/jsruntime/qv4stackframe_p.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/qml/jsruntime/qv4stackframe_p.h b/src/qml/jsruntime/qv4stackframe_p.h
index 449d4f095d..2882e6eee8 100644
--- a/src/qml/jsruntime/qv4stackframe_p.h
+++ b/src/qml/jsruntime/qv4stackframe_p.h
@@ -27,7 +27,7 @@ QT_BEGIN_NAMESPACE
namespace QV4 {
struct CppStackFrame;
-struct Q_QML_PRIVATE_EXPORT CppStackFrameBase
+struct Q_QML_EXPORT CppStackFrameBase
{
enum class Kind : quint8 { JS, Meta };
@@ -62,7 +62,7 @@ struct Q_QML_PRIVATE_EXPORT CppStackFrameBase
Kind kind;
};
-struct Q_QML_PRIVATE_EXPORT CppStackFrame : protected CppStackFrameBase
+struct Q_QML_EXPORT CppStackFrame : protected CppStackFrameBase
{
// We want to have those public but we can't declare them as public without making the struct
// non-standard layout. So we have this other struct with "using" in between.
@@ -119,7 +119,7 @@ protected:
}
};
-struct Q_QML_PRIVATE_EXPORT MetaTypesStackFrame : public CppStackFrame
+struct Q_QML_EXPORT MetaTypesStackFrame : public CppStackFrame
{
using CppStackFrame::push;
using CppStackFrame::pop;
@@ -158,7 +158,7 @@ struct Q_QML_PRIVATE_EXPORT MetaTypesStackFrame : public CppStackFrame
}
};
-struct Q_QML_PRIVATE_EXPORT JSTypesStackFrame : public CppStackFrame
+struct Q_QML_EXPORT JSTypesStackFrame : public CppStackFrame
{
using CppStackFrame::jsFrame;