From ebbf3936001969905ce28dc588b2c71c3b65c146 Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Fri, 23 Mar 2018 09:38:16 +0100 Subject: src: name all builtin init functions Initialize This commit renames a few of the builtin modules init functions to Initialize for consistency. PR-URL: https://github.com/nodejs/node/pull/19550 Reviewed-By: Anna Henningsen Reviewed-By: Tiancheng "Timothy" Gu Reviewed-By: James M Snell --- src/node_i18n.cc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/node_i18n.cc') diff --git a/src/node_i18n.cc b/src/node_i18n.cc index d65fc55ed1..7f462d5aea 100644 --- a/src/node_i18n.cc +++ b/src/node_i18n.cc @@ -852,10 +852,10 @@ static void GetStringWidth(const FunctionCallbackInfo& args) { args.GetReturnValue().Set(width); } -void Init(Local target, - Local unused, - Local context, - void* priv) { +void Initialize(Local target, + Local unused, + Local context, + void* priv) { Environment* env = Environment::GetCurrent(context); env->SetMethod(target, "toUnicode", ToUnicode); env->SetMethod(target, "toASCII", ToASCII); @@ -875,6 +875,6 @@ void Init(Local target, } // namespace i18n } // namespace node -NODE_BUILTIN_MODULE_CONTEXT_AWARE(icu, node::i18n::Init) +NODE_BUILTIN_MODULE_CONTEXT_AWARE(icu, node::i18n::Initialize) #endif // NODE_HAVE_I18N_SUPPORT -- cgit v1.2.3