aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/compiler/qv4codegen_p.h
diff options
context:
space:
mode:
authorMaximilian Goldstein <max.goldstein@qt.io>2022-03-23 15:02:08 +0100
committerMaximilian Goldstein <max.goldstein@qt.io>2022-03-24 09:21:10 +0100
commitce53e48504fc40df6195d68ad3767826ce10148a (patch)
treef4c007dc669cb5675667ea194aecbaedc90caeab /src/qml/compiler/qv4codegen_p.h
parentcc6bd22b61cff5b992b594b69552c8f41f65f13b (diff)
qml: Rename Q_QMLCOMPILER_EXPORT to Q_QML_COMPILER_EXPORT
Otherwise we are in conflict with the export macro of the qmlcompiler library. Change-Id: Ic0f647a6708bc4c0b32ee63a684d56c4fbfca2a7 Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io>
Diffstat (limited to 'src/qml/compiler/qv4codegen_p.h')
-rw-r--r--src/qml/compiler/qv4codegen_p.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qml/compiler/qv4codegen_p.h b/src/qml/compiler/qv4codegen_p.h
index 16b5e02969..ff9f23b1eb 100644
--- a/src/qml/compiler/qv4codegen_p.h
+++ b/src/qml/compiler/qv4codegen_p.h
@@ -80,7 +80,7 @@ struct ControlFlow;
struct ControlFlowCatch;
struct ControlFlowFinally;
-class Q_QMLCOMPILER_PRIVATE_EXPORT CodegenWarningInterface
+class Q_QML_COMPILER_PRIVATE_EXPORT CodegenWarningInterface
{
public:
virtual void reportVarUsedBeforeDeclaration(const QString &name, const QString &fileName,
@@ -95,7 +95,7 @@ inline CodegenWarningInterface *defaultCodegenWarningInterface()
return &iface;
}
-class Q_QMLCOMPILER_PRIVATE_EXPORT Codegen: protected QQmlJS::AST::Visitor
+class Q_QML_COMPILER_PRIVATE_EXPORT Codegen: protected QQmlJS::AST::Visitor
{
protected:
using BytecodeGenerator = QV4::Moth::BytecodeGenerator;