aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/compiler/qv4compileddata_p.h
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@qt.io>2018-07-26 15:31:46 +0200
committerSimon Hausmann <simon.hausmann@qt.io>2018-07-31 17:08:51 +0000
commit71c66d4b41be95b44ffa0d9bbbf04164f74bd23a (patch)
tree5ebe04d2a762f9a8cf38a468a2c5c8c4ccea74fe /src/qml/compiler/qv4compileddata_p.h
parent2312f5a2b4fd775933f54c9d8435ea047de2310a (diff)
Remove unused flag
Change-Id: Ib9028ffa8c7d014598da60bfe44e004031bf6017 Reviewed-by: Lars Knoll <lars.knoll@qt.io>
Diffstat (limited to 'src/qml/compiler/qv4compileddata_p.h')
-rw-r--r--src/qml/compiler/qv4compileddata_p.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/qml/compiler/qv4compileddata_p.h b/src/qml/compiler/qv4compileddata_p.h
index a891a761eb..dd0d92b0fa 100644
--- a/src/qml/compiler/qv4compileddata_p.h
+++ b/src/qml/compiler/qv4compileddata_p.h
@@ -776,11 +776,10 @@ struct Unit
enum : unsigned int {
IsJavascript = 0x1,
- IsQml = 0x2,
- StaticData = 0x4, // Unit data persistent in memory?
- IsSingleton = 0x8,
- IsSharedLibrary = 0x10, // .pragma shared?
- PendingTypeCompilation = 0x20 // the QML data structures present are incomplete and require type compilation
+ StaticData = 0x2, // Unit data persistent in memory?
+ IsSingleton = 0x4,
+ IsSharedLibrary = 0x8, // .pragma shared?
+ PendingTypeCompilation = 0x10 // the QML data structures present are incomplete and require type compilation
};
quint32_le flags;
quint32_le stringTableSize;