From 5c5a2c24847c636857153078e4716fcb242f394d Mon Sep 17 00:00:00 2001 From: Alexey Edelev Date: Thu, 23 Nov 2023 08:51:37 +0100 Subject: Remove the use of Q_QML_PRIVATE_EXPORT Task-number: QTBUG-117983 Change-Id: I5790f01d614cd70c7fcc9bd817ec6ace3f3e3730 Reviewed-by: Ulf Hermann --- src/qml/jsruntime/qv4stackframe_p.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/qml/jsruntime/qv4stackframe_p.h') 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; -- cgit v1.2.3