diff options
author | bptato <nincsnevem662@gmail.com> | 2023-12-28 22:13:56 +0100 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2023-12-28 22:13:56 +0100 |
commit | e2ad05692f575fab2482325a148f1faaac34b23b (patch) | |
tree | 05d92dcc0c8f10376d8390917dc561770d55370f /lib/quickjs/quickjs.c | |
parent | 6d1fc3e24e2ad340504619be239e283d74c26e77 (diff) | |
download | chawan-e2ad05692f575fab2482325a148f1faaac34b23b.tar.gz |
quickjs: remove unnecessary forward declaration
was causing conflicts with applying upstream patches
Diffstat (limited to 'lib/quickjs/quickjs.c')
-rw-r--r-- | lib/quickjs/quickjs.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/quickjs/quickjs.c b/lib/quickjs/quickjs.c index 258807e4..c9689455 100644 --- a/lib/quickjs/quickjs.c +++ b/lib/quickjs/quickjs.c @@ -1276,10 +1276,6 @@ static JSValue JS_InstantiateFunctionListItem2(JSContext *ctx, JSObject *p, JSAtom atom, void *opaque); void JS_SetUncatchableError(JSContext *ctx, JSValueConst val, BOOL flag); -static void mark_children(JSRuntime *rt, JSGCObjectHeader *gp, - JS_MarkFunc *mark_func); -static void gc_scan_incref_child(JSRuntime *rt, JSGCObjectHeader *p); - static const JSClassExoticMethods js_arguments_exotic_methods; static const JSClassExoticMethods js_string_exotic_methods; static const JSClassExoticMethods js_proxy_exotic_methods; |