aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4runtime_p.h
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@theqtcompany.com>2015-10-09 09:41:49 +0200
committerSimon Hausmann <simon.hausmann@theqtcompany.com>2016-04-11 12:27:35 +0000
commit3a3703f298534fce8e2be5fc1f03d84fd32c1b73 (patch)
treef1974db743f52505da95ff28e8bc59c8a08e03c0 /src/qml/jsruntime/qv4runtime_p.h
parent0b1030ae67f7f7446197c50d1adfd29bb0d9442c (diff)
Convert unary operations to new calling convention
Change-Id: I629e336ec41f46390b7ed9f9365a832e1722b61a Reviewed-by: Simon Hausmann <simon.hausmann@theqtcompany.com>
Diffstat (limited to 'src/qml/jsruntime/qv4runtime_p.h')
-rw-r--r--src/qml/jsruntime/qv4runtime_p.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/qml/jsruntime/qv4runtime_p.h b/src/qml/jsruntime/qv4runtime_p.h
index 853a795b92..12b9a11a38 100644
--- a/src/qml/jsruntime/qv4runtime_p.h
+++ b/src/qml/jsruntime/qv4runtime_p.h
@@ -137,7 +137,7 @@ inline double RuntimeHelpers::toNumber(const Value &value)
return value.toNumber();
}
-inline ReturnedValue Runtime::uPlus(const Value &value)
+inline ReturnedValue Runtime::method_uPlus(const Value &value)
{
TRACE1(value);
@@ -150,7 +150,7 @@ inline ReturnedValue Runtime::uPlus(const Value &value)
return Encode(n);
}
-inline ReturnedValue Runtime::uMinus(const Value &value)
+inline ReturnedValue Runtime::method_uMinus(const Value &value)
{
TRACE1(value);
@@ -163,7 +163,7 @@ inline ReturnedValue Runtime::uMinus(const Value &value)
}
}
-inline ReturnedValue Runtime::complement(const Value &value)
+inline ReturnedValue Runtime::method_complement(const Value &value)
{
TRACE1(value);
@@ -171,7 +171,7 @@ inline ReturnedValue Runtime::complement(const Value &value)
return Encode((int)~n);
}
-inline ReturnedValue Runtime::uNot(const Value &value)
+inline ReturnedValue Runtime::method_uNot(const Value &value)
{
TRACE1(value);