aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4regexp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/jsruntime/qv4regexp.cpp')
-rw-r--r--src/qml/jsruntime/qv4regexp.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/qml/jsruntime/qv4regexp.cpp b/src/qml/jsruntime/qv4regexp.cpp
index 8c184754ca..5ec63061dc 100644
--- a/src/qml/jsruntime/qv4regexp.cpp
+++ b/src/qml/jsruntime/qv4regexp.cpp
@@ -132,9 +132,10 @@ void RegExp::destroy(Managed *that)
static_cast<RegExp*>(that)->~RegExp();
}
-void RegExp::markObjects(Managed *that)
+void RegExp::markObjects(Managed *that, ExecutionEngine *e)
{
Q_UNUSED(that);
+ Q_UNUSED(e);
}
ReturnedValue RegExp::get(Managed *, const StringRef, bool *)