1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-10-01 03:36:26 -04:00

[quickjs] collection non-const

This commit is contained in:
Witold Filipczyk 2022-01-30 11:14:54 +01:00
parent a48a07a3ec
commit 4b294eecde

View File

@ -149,7 +149,7 @@ js_htmlCollection_namedItem2(JSContext *ctx, JSValueConst this_val, const char *
auto end = ns->end();
for (; it != end; ++it) {
const auto element = dynamic_cast<const xmlpp::Element*>(*it);
auto element = dynamic_cast<xmlpp::Element*>(*it);
if (!element) {
continue;
@ -244,6 +244,7 @@ static const JSCFunctionListEntry js_htmlCollection_proto_funcs[] = {
JS_CFUNC_DEF("toString", 0, js_htmlCollection_toString)
};
#if 0
static void
js_htmlCollection_finalizer(JSRuntime *rt, JSValue val)
{
@ -253,7 +254,6 @@ js_htmlCollection_finalizer(JSRuntime *rt, JSValue val)
map_collections.erase(node);
}
#if 0
static JSClassDef js_htmlCollection_class = {
"htmlCollection",
js_htmlCollection_finalizer