From e1cc1653fe312ae8b3685588800e4c95cbfa9e08 Mon Sep 17 00:00:00 2001 From: Daeyeon Jeong Date: Wed, 23 Nov 2022 15:37:01 +0900 Subject: [PATCH] fixup! fixup! src,lib: group properties used as constants from `util` binding Signed-off-by: Daeyeon Jeong --- src/node_util.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node_util.cc b/src/node_util.cc index 48769c0ad816c2..1bfb175484411f 100644 --- a/src/node_util.cc +++ b/src/node_util.cc @@ -365,7 +365,7 @@ void Initialize(Local target, Isolate* isolate = env->isolate(); { - Local tmpl = v8::ObjectTemplate::New(isolate); + Local tmpl = ObjectTemplate::New(isolate); #define V(PropertyName, _) \ tmpl->Set(FIXED_ONE_BYTE_STRING(env->isolate(), #PropertyName), \ env->PropertyName());