From 01f09669e2b6bc1f43160d787fabc6ca9e4b3c12 Mon Sep 17 00:00:00 2001 From: Martin Jones Date: Tue, 20 Mar 2012 12:45:12 +1000 Subject: [PATCH] Fix bitfield waste in QQmlContextData Why we do this at all, I have no idea. Change-Id: I35c78f4603499d5bb13d4608cc4f5eba0ee342ca Reviewed-by: Chris Adams --- src/qml/qml/qqmlcontext_p.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qml/qml/qqmlcontext_p.h b/src/qml/qml/qqmlcontext_p.h index d10543bde5..97bc04b91d 100644 --- a/src/qml/qml/qqmlcontext_p.h +++ b/src/qml/qml/qqmlcontext_p.h @@ -146,7 +146,7 @@ class Q_QML_EXPORT QQmlContextData quint32 isJSContext:1; quint32 isPragmaLibraryContext:1; quint32 unresolvedNames:1; // True if expressions in this context failed to resolve a toplevel name - quint32 dummy:28; + quint32 dummy:27; QQmlContext *publicContext; // VME data that is constructing this context if any