From 2108a8ba94af3318cfa02866e421631096d6efd9 Mon Sep 17 00:00:00 2001 From: link2xt Date: Mon, 22 Apr 2024 22:13:34 +0000 Subject: [PATCH] fix(node): undefine NAPI_EXPERIMENTAL This fixes build with new clang which treats -Wincompatible-function-pointer-types as an error. Related upstream issue: --- node/src/module.c | 1 - 1 file changed, 1 deletion(-) diff --git a/node/src/module.c b/node/src/module.c index da44376dc..13e9feff9 100644 --- a/node/src/module.c +++ b/node/src/module.c @@ -1,5 +1,4 @@ #define NAPI_VERSION 4 -#define NAPI_EXPERIMENTAL #include #include