From: Simon Hausmann Date: Mon, 13 May 2013 08:30:02 +0000 (+0200) Subject: Remove unused variable X-Git-Tag: upstream/5.2.1~669^2~486 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=121698b7caca76daa2e4e578952bf25b1604ddde;p=platform%2Fupstream%2Fqtdeclarative.git Remove unused variable Change-Id: I20a17d8d1af0027e4be17eb067c61204c41b0f7c Reviewed-by: Lars Knoll --- diff --git a/src/qml/qml/v4/qv4context.cpp b/src/qml/qml/v4/qv4context.cpp index 7a5f219..5119677 100644 --- a/src/qml/qml/v4/qv4context.cpp +++ b/src/qml/qml/v4/qv4context.cpp @@ -195,7 +195,6 @@ void CallContext::initCallContext(ExecutionEngine *engine, FunctionObject *funct if (function->usesArgumentsObject) { ArgumentsObject *args = new (engine->memoryManager) ArgumentsObject(this, function->formalParameterCount, argc); args->prototype = engine->objectPrototype; - Value arguments = Value::fromObject(args); activation = engine->newObject(); Property desc = Property::fromValue(Value::fromObject(args)); activation->__defineOwnProperty__(this, engine->id_arguments, desc, Attr_NotConfigurable);