From 8c54801fd9b3834911a70430934e218b7a8fca17 Mon Sep 17 00:00:00 2001 From: lyon1998 Date: Thu, 17 Mar 2022 12:19:25 +0800 Subject: [PATCH] connot add InstrcutUnit* in InstructArray struct --- src/PikaVM.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/PikaVM.c b/src/PikaVM.c index 827b1e246..4c353d886 100644 --- a/src/PikaVM.c +++ b/src/PikaVM.c @@ -827,6 +827,9 @@ char* constPool_getStart(ConstPool* self) { return (char*)arg_getContent(self->arg_buff); } +void constPool_update(ConstPool *self){ +} + void constPool_init(ConstPool* self) { self->arg_buff = arg_setStr(NULL, "", ""); self->content_offset_now = 0;