From 0d5af2804344221e9a1abba863a65d27710ab50c Mon Sep 17 00:00:00 2001 From: dzaima Date: Mon, 19 Jul 2021 19:29:29 +0300 Subject: [PATCH] use mut_copyG in one more place --- src/utils/mut.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils/mut.h b/src/utils/mut.h index 6a73174f..4637971c 100644 --- a/src/utils/mut.h +++ b/src/utils/mut.h @@ -368,8 +368,8 @@ static B vec_join(B w, B x) { // consumes both } } MAKE_MUT(r, ria); mut_init(r, el_or(TI(w,elType), TI(x,elType))); - mut_copy(r, 0, w, 0, wia); - mut_copy(r, wia, x, 0, xia); + mut_copyG(r, 0, w, 0, wia); + mut_copyG(r, wia, x, 0, xia); dec(w); dec(x); return mut_fv(r); }