We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
emplace_back
push_back
1 parent 2335467 commit 9af9083Copy full SHA for 9af9083
src/node.cc
@@ -807,7 +807,7 @@ int ProcessGlobalArgs(std::vector<std::string>* args,
807
// is removed in V8.
808
if (std::find(v8_args.begin(), v8_args.end(),
809
"--no-harmony-import-assertions") == v8_args.end()) {
810
- v8_args.push_back("--harmony-import-assertions");
+ v8_args.emplace_back("--harmony-import-assertions");
811
}
812
813
auto env_opts = per_process::cli_options->per_isolate->per_env;
0 commit comments