aboutsummaryrefslogtreecommitdiffstats
path: root/qv4codegen.cpp
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@digia.com>2012-12-12 20:34:19 +0100
committerSimon Hausmann <simon.hausmann@digia.com>2012-12-12 11:47:26 +0100
commit47b01bb7e5ac8812470d5840534aeaa2eb342164 (patch)
tree53c485617742a67aef3d2a0fa5ae8859ce54bc54 /qv4codegen.cpp
parentfc9e8852c3d2b323b119c9151f13c41bc932608f (diff)
Fix indentation
Change-Id: I8ccb47cae3214ab2ac8ed51657856f51fc6c4e95 Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'qv4codegen.cpp')
-rw-r--r--qv4codegen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qv4codegen.cpp b/qv4codegen.cpp
index a6c1f7f4ce..35e1014d52 100644
--- a/qv4codegen.cpp
+++ b/qv4codegen.cpp
@@ -510,7 +510,7 @@ IR::Expr *Codegen::unop(IR::AluOp op, IR::Expr *expr)
case IR::OpNot:
return _block->CONST(IR::BoolType, !c->value);
case IR::OpUMinus:
- return _block->CONST(IR::NumberType, -c->value);
+ return _block->CONST(IR::NumberType, -c->value);
case IR::OpUPlus:
return expr;
case IR::OpCompl: