From fc08081f88cbc232a48ce86cb2ecb2d7a3063cb3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Astor?= Date: Fri, 22 Apr 2022 11:27:51 +0200 Subject: [PATCH] :art: Make Sift abstract and final --- src/lib/sift.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib/sift.c b/src/lib/sift.c index 5a8c5e91..8ecc99c6 100644 --- a/src/lib/sift.c +++ b/src/lib/sift.c @@ -70,7 +70,8 @@ static OP_CHECK(opck_ctrl) { } GWION_IMPORT(sift) { - GWI_BB(gwi_class_ini(gwi, "Sift", "Shred")); + const Type sift = gwi_class_ini(gwi, "Sift", "Shred"); + SET_FLAG(sift, abstract | ae_flag_final); GWI_BB(gwi_class_end(gwi)); gwidoc(gwi, "This operator expands too\n" -- 2.43.0