aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4runtimeapi_p.h
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@theqtcompany.com>2015-10-12 14:11:52 +0200
committerSimon Hausmann <simon.hausmann@theqtcompany.com>2016-04-11 12:27:47 +0000
commitecc96bbfbfe15ed6fb8793766334f01aa465646f (patch)
tree64d4f054656ef49e34e7328500e7c4a6368ed5a8 /src/qml/jsruntime/qv4runtimeapi_p.h
parentad8d760decd5f1c6242a42688417b3c86122121c (diff)
Removed unused typedefs
Change-Id: If0908854876bd242b510f5a536afb06511c0ba61 Reviewed-by: Simon Hausmann <simon.hausmann@theqtcompany.com>
Diffstat (limited to 'src/qml/jsruntime/qv4runtimeapi_p.h')
-rw-r--r--src/qml/jsruntime/qv4runtimeapi_p.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/qml/jsruntime/qv4runtimeapi_p.h b/src/qml/jsruntime/qv4runtimeapi_p.h
index d78d751ebc..9eb6a124b4 100644
--- a/src/qml/jsruntime/qv4runtimeapi_p.h
+++ b/src/qml/jsruntime/qv4runtimeapi_p.h
@@ -258,7 +258,6 @@ struct Q_QML_PRIVATE_EXPORT Runtime {
RUNTIME_METHOD(ReturnedValue, strictNotEqual, (const Value &left, const Value &right));
// comparisons
- typedef Bool (*CompareOperation)(const Value &left, const Value &right);
RUNTIME_METHOD(Bool, compareGreaterThan, (const Value &l, const Value &r));
RUNTIME_METHOD(Bool, compareLessThan, (const Value &l, const Value &r));
RUNTIME_METHOD(Bool, compareGreaterEqual, (const Value &l, const Value &r));
@@ -268,7 +267,6 @@ struct Q_QML_PRIVATE_EXPORT Runtime {
RUNTIME_METHOD(Bool, compareStrictEqual, (const Value &left, const Value &right));
RUNTIME_METHOD(Bool, compareStrictNotEqual, (const Value &left, const Value &right));
- typedef Bool (*CompareOperationContext)(ExecutionEngine *engine, const Value &left, const Value &right);
RUNTIME_METHOD(Bool, compareInstanceof, (ExecutionEngine *engine, const Value &left, const Value &right));
RUNTIME_METHOD(Bool, compareIn, (ExecutionEngine *engine, const Value &left, const Value &right));