From 84b233f992447aa9ac7e0067239793f6241c4017 Mon Sep 17 00:00:00 2001
From: Alan Alpert <aalpert@blackberry.com>
Date: Wed, 1 May 2013 17:30:53 -0700
Subject: [PATCH] Make QQmlInstantiatorPrivate bools more space efficient

Change-Id: Ie7a4951d66763c55148f02c6c88241c8ad363a90
Reviewed-by: Andrew den Exter <andrew.den.exter@qinetic.com.au>
---
 src/qml/types/qqmlinstantiator_p_p.h | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/qml/types/qqmlinstantiator_p_p.h b/src/qml/types/qqmlinstantiator_p_p.h
index ac25ce809c..a7d6905a7e 100644
--- a/src/qml/types/qqmlinstantiator_p_p.h
+++ b/src/qml/types/qqmlinstantiator_p_p.h
@@ -75,11 +75,11 @@ public:
     void _q_createdItem(int, QObject *);
     void _q_modelUpdated(const QQmlChangeSet &, bool);
 
-    bool componentComplete;
-    bool effectiveReset;
-    bool active;
-    bool async;
-    bool ownModel;
+    bool componentComplete:1;
+    bool effectiveReset:1;
+    bool active:1;
+    bool async:1;
+    bool ownModel:1;
     QVariant model;
     QQmlInstanceModel *instanceModel;
     QQmlComponent *delegate;
-- 
GitLab