From ca2b0367e02b598f73114361ab47e79018e5f2f4 Mon Sep 17 00:00:00 2001 From: Daeyeon Jeong Date: Wed, 1 Jun 2022 10:16:00 +0900 Subject: [PATCH] fixup: remove the function declaration Signed-off-by: Daeyeon Jeong daeyeon.dev@gmail.com --- src/node_contextify.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/node_contextify.h b/src/node_contextify.h index c9ba78b8a5e185..d45b73b36e295d 100644 --- a/src/node_contextify.h +++ b/src/node_contextify.h @@ -148,9 +148,7 @@ class ContextifyScript : public BaseObject { static void RegisterExternalReferences(ExternalReferenceRegistry* registry); static void New(const v8::FunctionCallbackInfo& args); static bool InstanceOf(Environment* env, const v8::Local& args); - static void CreateCachedData( - const v8::FunctionCallbackInfo& args); - static void RunInThisContext(const v8::FunctionCallbackInfo& args); + static void CreateCachedData(const v8::FunctionCallbackInfo& args); static void RunInContext(const v8::FunctionCallbackInfo& args); static bool EvalMachine(Environment* env, const int64_t timeout,