From: fennecdjay Date: Tue, 10 Nov 2020 23:22:46 +0000 (+0100) Subject: :art: More const X-Git-Tag: nightly~1175 X-Git-Url: http://10.10.0.4:5575/?a=commitdiff_plain;h=09888171b17517e9bd3fc031dbeaf36359de3ae5;p=gwion.git :art: More const --- diff --git a/src/parse/func_resolve_tmpl.c b/src/parse/func_resolve_tmpl.c index d274fc0c..374d8170 100644 --- a/src/parse/func_resolve_tmpl.c +++ b/src/parse/func_resolve_tmpl.c @@ -16,11 +16,11 @@ #include "tmp_resolve.h" struct ResolverArgs { - Value v; + const Value v; const Exp_Call *e; - m_str tmpl_name; + const m_str tmpl_name; + const Type_List types; Func m_func; - Type_List types; }; ANN static inline Value template_get_ready(const Env env, const Value v, const m_str tmpl, const m_uint i) {