Skip to content

Commit 45b11f8

Browse files
committed
fix: fix windows compile
1 parent 17d4298 commit 45b11f8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

deps/quickjs_2021_03_27/quickjs.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39892,7 +39892,7 @@ static JSValue js_number_isSafeInteger(JSContext *ctx, JSValueConst this_val,
3989239892
return JS_NewBool(ctx, is_safe_integer(d));
3989339893
}
3989439894

39895-
static const JSCFunctionListEntry js_number_funcs[] = {
39895+
static JSCFunctionListEntry js_number_funcs[] = {
3989639896
/* global ParseInt and parseFloat should be defined already or delayed */
3989739897
JS_ALIAS_BASE_DEF("parseInt", "parseInt", 0 ),
3989839898
JS_ALIAS_BASE_DEF("parseFloat", "parseFloat", 0 ),
@@ -47926,7 +47926,7 @@ static JSValue js_global_unescape(JSContext *ctx, JSValueConst this_val,
4792647926

4792747927
/* global object */
4792847928

47929-
static const JSCFunctionListEntry js_global_funcs[] = {
47929+
static JSCFunctionListEntry js_global_funcs[] = {
4793047930
JS_CFUNC_DEF("parseInt", 2, js_parseInt ),
4793147931
JS_CFUNC_DEF("parseFloat", 1, js_parseFloat ),
4793247932
JS_CFUNC_DEF("isNaN", 1, js_global_isNaN ),

0 commit comments

Comments
 (0)