]> Nishi Git Mirror - gwion.git/commitdiff
:art: Make small func inline
authorJérémie Astor <astor.jeremie@wanadoo.fr>
Wed, 6 May 2020 15:14:10 +0000 (17:14 +0200)
committerJérémie Astor <astor.jeremie@wanadoo.fr>
Wed, 6 May 2020 15:14:10 +0000 (17:14 +0200)
src/parse/operator.c

index d74345e3d8acc3d617b9d8706dbc37a0dc35a815..e49b0283c9dfe7599e439f342ba7b6dcb7fa5648 100644 (file)
@@ -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);
 }