aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@qt.io>2020-04-15 14:40:42 +0200
committerSimon Hausmann <simon.hausmann@qt.io>2020-04-15 18:39:55 +0200
commitb2e1417e87dcd74d5cc451d5b6d3a040d2f4df94 (patch)
tree9f7b9759088d32ffa6b5536366034946d7b487ae /src/qml/jsruntime
parent6c6b96eb698e1314e7f63a3d6340b3d446116672 (diff)
Fix build with MSVC
After the latest changes to QHash (and implicitly QSet), there's more out-of-line code and that requires exporting QV4::IdentifierHash. Change-Id: Ibb2f4458c381e89e3e63b083adddd7631e4f8a51 Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io> Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
Diffstat (limited to 'src/qml/jsruntime')
-rw-r--r--src/qml/jsruntime/qv4identifierhash_p.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/jsruntime/qv4identifierhash_p.h b/src/qml/jsruntime/qv4identifierhash_p.h
index 07cb4b6ce3..06b813b843 100644
--- a/src/qml/jsruntime/qv4identifierhash_p.h
+++ b/src/qml/jsruntime/qv4identifierhash_p.h
@@ -60,7 +60,7 @@ namespace QV4 {
struct IdentifierHashEntry;
struct IdentifierHashData;
-struct IdentifierHash
+struct Q_QML_PRIVATE_EXPORT IdentifierHash
{
IdentifierHash() = default;
IdentifierHash(ExecutionEngine *engine);