File tree Expand file tree Collapse file tree 2 files changed +1
-13
lines changed Expand file tree Collapse file tree 2 files changed +1
-13
lines changed Original file line number Diff line number Diff line change @@ -862,13 +862,6 @@ int ProcessGlobalArgs(std::vector<std::string>* args,
862862
863863static std::atomic_bool init_called{false };
864864
865- int InitializeNodeWithArgs (std::vector<std::string>* argv,
866- std::vector<std::string>* exec_argv,
867- std::vector<std::string>* errors) {
868- return InitializeNodeWithArgs (argv, exec_argv, errors,
869- ProcessFlags::kNoFlags );
870- }
871-
872865int InitializeNodeWithArgs (std::vector<std::string>* argv,
873866 std::vector<std::string>* exec_argv,
874867 std::vector<std::string>* errors,
Original file line number Diff line number Diff line change @@ -250,16 +250,11 @@ NODE_EXTERN int Stop(Environment* env);
250250// from argv, fill exec_argv, and possibly add errors resulting from parsing
251251// the arguments to `errors`. The return value is a suggested exit code for the
252252// program; If it is 0, then initializing Node.js succeeded.
253- NODE_EXTERN int InitializeNodeWithArgs (
254- std::vector<std::string>* argv,
255- std::vector<std::string>* exec_argv,
256- std::vector<std::string>* errors);
257- // TODO(zcbenz): Turn above overloaded version into below's default argument.
258253NODE_EXTERN int InitializeNodeWithArgs (
259254 std::vector<std::string>* argv,
260255 std::vector<std::string>* exec_argv,
261256 std::vector<std::string>* errors,
262- ProcessFlags::Flags flags);
257+ ProcessFlags::Flags flags = ProcessFlags:: kNoFlags );
263258
264259enum OptionEnvvarSettings {
265260 kAllowedInEnvironment ,
You can’t perform that action at this time.
0 commit comments