aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4regexpobject_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/jsruntime/qv4regexpobject_p.h')
-rw-r--r--src/qml/jsruntime/qv4regexpobject_p.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/qml/jsruntime/qv4regexpobject_p.h b/src/qml/jsruntime/qv4regexpobject_p.h
index 4148ca07d4..ac07707b2f 100644
--- a/src/qml/jsruntime/qv4regexpobject_p.h
+++ b/src/qml/jsruntime/qv4regexpobject_p.h
@@ -72,11 +72,6 @@ struct RegExpObject: Object {
RegExp *value;
bool global;
};
- struct {
- RegExp *value;
- bool global;
- } __data;
-
V4_OBJECT(Object)
Q_MANAGED_TYPE(RegExpObject)
@@ -117,13 +112,6 @@ struct RegExpCtor: FunctionObject
int lastMatchEnd;
void clearLastMatch();
};
- struct {
- Value lastMatch;
- StringValue lastInput;
- int lastMatchStart;
- int lastMatchEnd;
- } __data;
-
V4_OBJECT(FunctionObject)
Value lastMatch() { return d()->lastMatch; }