From f316d5df235174b89573d294e54ba6de5dd46bbf Mon Sep 17 00:00:00 2001 From: Shelley Vohr Date: Mon, 6 Feb 2023 19:04:19 +0100 Subject: [PATCH] src: rename internal module declaration as internal bindings https://github.com/nodejs/node/pull/45551 --- shell/common/node_includes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/common/node_includes.h b/shell/common/node_includes.h index 104d73520e2d7..db32e7519bd83 100644 --- a/shell/common/node_includes.h +++ b/shell/common/node_includes.h @@ -35,6 +35,6 @@ // Allows to explicitly register builtin modules instead of using // __attribute__((constructor)). #define NODE_LINKED_MODULE_CONTEXT_AWARE(modname, regfunc) \ - NODE_MODULE_CONTEXT_AWARE_CPP(modname, regfunc, nullptr, NM_F_LINKED) + NODE_BINDING_CONTEXT_AWARE_CPP(modname, regfunc, nullptr, NM_F_LINKED) #endif // ELECTRON_SHELL_COMMON_NODE_INCLUDES_H_