]> Nishi Git Mirror - gwion.git/commitdiff
:art: More const, again
authorfennecdjay <fennecdjay@gwion.tk>
Tue, 10 Nov 2020 23:24:43 +0000 (00:24 +0100)
committerfennecdjay <fennecdjay@gwion.tk>
Tue, 10 Nov 2020 23:24:43 +0000 (00:24 +0100)
src/parse/func_resolve_tmpl.c

index 374d81701324445ac001f723e53d79755a5e699d..ffeea7f3ff9a9ce6ad6f36640d1e522d5c4acca2 100644 (file)
@@ -30,7 +30,7 @@ ANN static inline Value template_get_ready(const Env env, const Value v, const m
 }
 
 ANN static m_bool check_call(const Env env, const Exp_Call* exp) {
-  ae_exp_t et = exp->func->exp_type;
+  const ae_exp_t et = exp->func->exp_type;
   if(et != ae_exp_primary && et != ae_exp_dot && et != ae_exp_cast)
     ERR_B(exp->func->pos, _("invalid expression for function call."))
   CHECK_OB(check_exp(env, exp->func))