aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jit/qv4unop_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/jit/qv4unop_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/jit/qv4unop_p.h')
-rw-r--r--src/qml/jit/qv4unop_p.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qml/jit/qv4unop_p.h b/src/qml/jit/qv4unop_p.h
index f0b5b9c223..1141a84913 100644
--- a/src/qml/jit/qv4unop_p.h
+++ b/src/qml/jit/qv4unop_p.h
@@ -64,7 +64,7 @@ class Assembler;
struct Unop {
Unop(Assembler *assembler, IR::AluOp operation)
- : as(assembler)
+ : _as(assembler)
, op(operation)
{}
@@ -74,7 +74,7 @@ struct Unop {
void generateNot(IR::Expr *source, IR::Expr *target);
void generateCompl(IR::Expr *source, IR::Expr *target);
- Assembler *as;
+ Assembler *_as;
IR::AluOp op;
};