aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4regexpobject_p.h
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@qt.io>2017-11-07 13:45:10 +0100
committerLars Knoll <lars.knoll@qt.io>2017-11-15 18:46:59 +0000
commitae1b7bf75705962f361b34a352094e7006ccde8a (patch)
tree896ee9ca9584cde233610a7cef922010819d6648 /src/qml/jsruntime/qv4regexpobject_p.h
parent14111d693b0570949611c2d656584f17067a9ca5 (diff)
Fixup nInlineProps
Change-Id: Ie8f162366ea5fa2d3100930e5ca9a6831e121a94 Reviewed-by: Erik Verbruggen <erik.verbruggen@qt.io>
Diffstat (limited to 'src/qml/jsruntime/qv4regexpobject_p.h')
-rw-r--r--src/qml/jsruntime/qv4regexpobject_p.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/qml/jsruntime/qv4regexpobject_p.h b/src/qml/jsruntime/qv4regexpobject_p.h
index 7e4f186dc4..181628241b 100644
--- a/src/qml/jsruntime/qv4regexpobject_p.h
+++ b/src/qml/jsruntime/qv4regexpobject_p.h
@@ -121,6 +121,8 @@ struct RegExpObject: Object {
Index_ArrayInput = Index_ArrayIndex + 1
};
+ enum { NInlineProperties = 5 };
+
Heap::RegExp *value() const { return d()->value; }
bool global() const { return d()->value->global; }