From: Jérémie Astor Date: Wed, 6 May 2020 15:14:10 +0000 (+0200) Subject: :art: Make small func inline X-Git-Tag: nightly~1659 X-Git-Url: http://10.10.0.4:5575/?a=commitdiff_plain;h=1ca5ea36ab3f1ebf755ee296ac9e67e2e1e07ff7;p=gwion.git :art: Make small func inline --- diff --git a/src/parse/operator.c b/src/parse/operator.c index d74345e3..e49b0283 100644 --- a/src/parse/operator.c +++ b/src/parse/operator.c @@ -166,7 +166,7 @@ ANN static void set_nspc(struct Op_Import *opi, const Nspc nspc) { exp_self((union exp_data*)opi->data)->info->nspc = nspc; } -ANN static void set_nonnull(const Type t, const Exp exp) { +ANN static inline void set_nonnull(const Type t, const Exp exp) { if(t != OP_ANY_TYPE && GET_FLAG(t, nonnull)) exp_setnonnull(exp, 1); }