From 47b01bb7e5ac8812470d5840534aeaa2eb342164 Mon Sep 17 00:00:00 2001 From: Lars Knoll Date: Wed, 12 Dec 2012 20:34:19 +0100 Subject: [PATCH] Fix indentation Change-Id: I8ccb47cae3214ab2ac8ed51657856f51fc6c4e95 Reviewed-by: Simon Hausmann --- qv4codegen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qv4codegen.cpp b/qv4codegen.cpp index a6c1f7f..35e1014 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: -- 2.7.4