Skip to content

Commit

Permalink
More QuickJS support code macOS compiler fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
tritao committed Sep 3, 2024
1 parent f8ff3a5 commit 46ae42b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Generator/Generators/QuickJS/Runtime/Signal.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -155,13 +155,13 @@ void finalizer__Signal(JSRuntime *rt, JSValue val)
JS_SetOpaque(val, nullptr);
}

static JSClassDef classDef__Signal
static struct JSClassDef classDef__Signal
{
.class_name = "Signal",
.finalizer = finalizer__Signal
};

static JSCFunctionListEntry funcDef__Signal[]
static struct JSCFunctionListEntry funcDef__Signal[]
{
JS_CFUNC_DEF("connect", 1, callback_method_Signal_connect),
JS_CFUNC_DEF("disconnect", 1, callback_method_Signal_disconnect),
Expand Down

0 comments on commit 46ae42b

Please sign in to comment.