diff options
author | Lars Knoll <[email protected]> | 2017-10-23 10:10:28 +0200 |
---|---|---|
committer | Lars Knoll <[email protected]> | 2017-11-13 08:56:04 +0000 |
commit | a2142203ad6cdb54ec063e259b40171e13c5d4bd (patch) | |
tree | 5da2bc88d9015b5f938e7dcd118bd9c5a93c3e5c /src/qml/jsruntime/qv4function_p.h | |
parent | 4d2763e425828ac35c2a03c0e675b83fa8dad668 (diff) |
Finally get rid of the QV4::Function pointer in the context
Change-Id: Iad6018f67faa956d385087865fca9d73419e363e
Reviewed-by: Simon Hausmann <[email protected]>
Diffstat (limited to 'src/qml/jsruntime/qv4function_p.h')
-rw-r--r-- | src/qml/jsruntime/qv4function_p.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/qml/jsruntime/qv4function_p.h b/src/qml/jsruntime/qv4function_p.h index 5ecbd0a359..03529407ab 100644 --- a/src/qml/jsruntime/qv4function_p.h +++ b/src/qml/jsruntime/qv4function_p.h @@ -97,14 +97,6 @@ struct Q_QML_EXPORT Function { } }; - -inline unsigned int Heap::CallContext::formalParameterCount() const -{ - Q_ASSERT(v4Function); - return v4Function->nFormals; -} - - } QT_END_NAMESPACE |