From: Jean Privat Date: Thu, 22 Oct 2015 00:31:01 +0000 (-0400) Subject: global_compiler: remove a useless local variable X-Git-Tag: v0.7.9~10^2~4 X-Git-Url: http://nitlanguage.org global_compiler: remove a useless local variable Signed-off-by: Jean Privat --- diff --git a/src/compiler/global_compiler.nit b/src/compiler/global_compiler.nit index 49671f9..273d645 100644 --- a/src/compiler/global_compiler.nit +++ b/src/compiler/global_compiler.nit @@ -246,7 +246,6 @@ class GlobalCompiler var res = v.new_var(mtype) res.is_exact = true if is_native_array then - var mtype_elt = mtype.arguments.first v.add("{res} = nit_alloc(sizeof(struct {mtype.c_name}) + length*sizeof(val*));") v.add("((struct {mtype.c_name}*){res})->length = length;") else