From 08ed6803c1ddf59dcc07a31ac97a04442f629071 Mon Sep 17 00:00:00 2001 From: dzaima Date: Wed, 12 May 2021 12:10:19 +0300 Subject: [PATCH] fillarr mut --- src/mut.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mut.c b/src/mut.c index 1e8dceda..caa92ff1 100644 --- a/src/mut.c +++ b/src/mut.c @@ -165,6 +165,7 @@ void mut_copy(Mut* m, usz ms, B x, usz xs, usz l) { B* xp; if (xt==t_harr) xp = harr_ptr(x); else if (xt==t_hslice) xp = c(HSlice,x)->a; + else if (xt==t_fillarr) xp = c(FillArr,x)->a; else { BS2B xget = ti[xt].get; for (usz i = 0; i < l; i++) mpo[i] = xget(x,i+xs);