Fix indentation
authorLars Knoll <lars.knoll@digia.com>
Wed, 12 Dec 2012 19:34:19 +0000 (20:34 +0100)
committerSimon Hausmann <simon.hausmann@digia.com>
Wed, 12 Dec 2012 10:47:26 +0000 (11:47 +0100)
Change-Id: I8ccb47cae3214ab2ac8ed51657856f51fc6c4e95
Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
qv4codegen.cpp

index a6c1f7f..35e1014 100644 (file)
@@ -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: