]> Nishi Git Mirror - gwion.git/commitdiff
:art: Use const
authorJérémie Astor <astor.jeremie@wanadoo.fr>
Thu, 7 May 2020 17:23:30 +0000 (19:23 +0200)
committerJérémie Astor <astor.jeremie@wanadoo.fr>
Thu, 7 May 2020 17:23:30 +0000 (19:23 +0200)
src/emit/emit.c

index 93af7968d76905c2b5f055c3555e0d07769ee1a3..94668df255a33681140b1bbe7e1bcfc16b50f60f 100644 (file)
@@ -882,7 +882,7 @@ static inline m_bool push_func_code(const Emitter emit, const Func f) {
 
 ANN static m_bool emit_template_code(const Emitter emit, const Func f) {
   const Value v = f->value_ref;
-  size_t scope = emit->env->scope->depth;
+  const size_t scope = emit->env->scope->depth;
   struct EnvSet es = { .env=emit->env, .data=emit, .func=(_exp_func)emit_cdef,
     .scope=scope, .flag=ae_flag_emit };
   if(v->from->owner_class)