aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jit/qv4unop_p.h
diff options
context:
space:
mode:
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;
};