aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4string_p.h
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@digia.com>2014-07-17 15:56:30 +0200
committerSimon Hausmann <simon.hausmann@digia.com>2014-07-22 13:49:21 +0200
commitb3fab495f514a3bd2d335276a022c0f3678f1cc4 (patch)
tree3b6f6e17f4addd94bd95bf3fe3945c5398a05446 /src/qml/jsruntime/qv4string_p.h
parent659e06f3a0c5a72154306c16abfeb177b2572e43 (diff)
Cleanup: Get rid of __data members
These are not needed anymore Change-Id: Ib834aa294e84ca9fbdd5b6850d5bc172e8b54ba1 Reviewed-by: Lars Knoll <lars.knoll@digia.com>
Diffstat (limited to 'src/qml/jsruntime/qv4string_p.h')
-rw-r--r--src/qml/jsruntime/qv4string_p.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/qml/jsruntime/qv4string_p.h b/src/qml/jsruntime/qv4string_p.h
index 3bcf1bdae1..56acd1f199 100644
--- a/src/qml/jsruntime/qv4string_p.h
+++ b/src/qml/jsruntime/qv4string_p.h
@@ -81,19 +81,6 @@ struct Q_QML_PRIVATE_EXPORT String : public Managed {
private:
QChar *recursiveAppend(QChar *ch) const;
};
- struct {
- union {
- mutable QStringData *text;
- mutable String *left;
- };
- union {
- mutable Identifier *identifier;
- mutable String *right;
- };
- mutable uint stringHash;
- mutable uint largestSubLength;
- uint len;
- } __data;
// ### FIXME: Should this be a V4_OBJECT
V4_OBJECT(QV4::Managed)
Q_MANAGED_TYPE(String)