aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/compiler/qv4codegen.cpp
diff options
context:
space:
mode:
authorErik Verbruggen <erik.verbruggen@qt.io>2018-09-18 10:32:32 +0200
committerErik Verbruggen <erik.verbruggen@qt.io>2018-10-07 09:50:28 +0000
commit28521e3585c0290ff1ef5cd21fa81d308ddf3f44 (patch)
tree6b3328af8c6da54f7e0a1a1f112aa343ccf19251 /src/qml/compiler/qv4codegen.cpp
parent5d7710a623ecde64316c42fd097db386ac28dd51 (diff)
Trim some #includes
Change-Id: I5346fc36c89b7969c2bef3069f256f33bd4d9eb9 Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
Diffstat (limited to 'src/qml/compiler/qv4codegen.cpp')
-rw-r--r--src/qml/compiler/qv4codegen.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/qml/compiler/qv4codegen.cpp b/src/qml/compiler/qv4codegen.cpp
index 4af3c99df8..a90dca4884 100644
--- a/src/qml/compiler/qv4codegen.cpp
+++ b/src/qml/compiler/qv4codegen.cpp
@@ -42,10 +42,6 @@
#include <QtCore/QCoreApplication>
#include <QtCore/QStringList>
-#include <QtCore/QSet>
-#include <QtCore/QBuffer>
-#include <QtCore/QBitArray>
-#include <QtCore/QLinkedList>
#include <QtCore/QStack>
#include <QScopeGuard>
#include <private/qqmljsast_p.h>
@@ -56,6 +52,10 @@
#include <private/qv4bytecodegenerator_p.h>
#include <private/qv4compilerscanfunctions_p.h>
+#ifndef V4_BOOTSTRAP
+# include <qqmlerror.h>
+#endif
+
#include <cmath>
#include <iostream>