From 1ca5ea36ab3f1ebf755ee296ac9e67e2e1e07ff7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Astor?= Date: Wed, 6 May 2020 17:14:10 +0200 Subject: [PATCH] :art: Make small func inline --- src/parse/operator.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.43.0