aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/qqmlboundsignal_p.h
diff options
context:
space:
mode:
authorRobin Burchell <robin.burchell@viroteck.net>2014-09-15 02:41:06 +0200
committerRobin Burchell <robin.burchell@viroteck.net>2014-09-15 17:21:02 +0200
commitb1243d7a64bd337cfc1b277b4b0bd587297e5da6 (patch)
tree9c178d5b6595ae7c2144e83a29f2b379afae6666 /src/qml/qml/qqmlboundsignal_p.h
parent0b6b8c2f8e9ca3240c2a4b405cbd4aa6f5937e3a (diff)
QQmlBoundSignalExpression: Remove extra padding.
Size goes from 104 to 96 bytes on x86_64. Change-Id: I84614d9e4949e4470e841c0efb6a674e1cb74778 Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'src/qml/qml/qqmlboundsignal_p.h')
-rw-r--r--src/qml/qml/qqmlboundsignal_p.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/qml/qqmlboundsignal_p.h b/src/qml/qml/qqmlboundsignal_p.h
index b9f519a920..d2fec2afc8 100644
--- a/src/qml/qml/qqmlboundsignal_p.h
+++ b/src/qml/qml/qqmlboundsignal_p.h
@@ -98,10 +98,10 @@ private:
bool invalidParameterName() const { return m_extra.flag2(); }
void setInvalidParameterName(bool v) { m_extra.setFlag2Value(v); }
+ int m_index;
QV4::PersistentValue m_v8function;
QObject *m_target;
- int m_index;
// only needed when !expressionFunctionValid()
struct ExtraData {