From 48ee6b9dc9577a922bdf26cf690574f71f49c244 Mon Sep 17 00:00:00 2001 From: Darshan Sen Date: Thu, 30 Jun 2022 14:01:11 +0530 Subject: [PATCH] src,bootstrap: remove NodeMainInstance::registry_ MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit All uses of NodeMainInstance::registry_ were removed in https://github.com/nodejs/node/commit/43d2e247c7c198fcbbded3e13fa3996687848660, so this change removes the variable completely. Signed-off-by: Darshan Sen PR-URL: https://github.com/nodejs/node/pull/43392 Reviewed-By: Colin Ihrig Reviewed-By: Tobias Nießen Reviewed-By: Santiago Gimeno Reviewed-By: Joyee Cheung Reviewed-By: James M Snell --- src/node_main_instance.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/node_main_instance.h b/src/node_main_instance.h index 0161f6df18a557..3be22767d87863 100644 --- a/src/node_main_instance.h +++ b/src/node_main_instance.h @@ -77,7 +77,6 @@ class NodeMainInstance { const std::vector& args, const std::vector& exec_args); - static std::unique_ptr registry_; std::vector args_; std::vector exec_args_; std::unique_ptr array_buffer_allocator_;