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

index d274fc0c599d0aeda7ee2a727253f16a1299bd4e..374d81701324445ac001f723e53d79755a5e699d 100644 (file)
 #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) {