diff options
author | Ben Noordhuis <info@bnoordhuis.nl> | 2017-06-15 14:36:39 +0200 |
---|---|---|
committer | Ben Noordhuis <info@bnoordhuis.nl> | 2017-06-21 11:24:59 +0200 |
commit | 1c314f5facb98e4790ff60f0104f5d18bc3eb53e (patch) | |
tree | 3d85f5f9595d359727f3750270950352fc66386e /src/node.cc | |
parent | 76340e3f1007998c7cb9d69fa1a42d42663ca6c2 (diff) | |
download | node-new-1c314f5facb98e4790ff60f0104f5d18bc3eb53e.tar.gz |
src: don't set --icu_case_mapping flag on startup
It's on by default now and the flag will be removed in the near future.
Fixes: https://github.com/nodejs/node/issues/13688
PR-URL: https://github.com/nodejs/node/pull/13698
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Refael Ackermann <refack@gmail.com>
Diffstat (limited to 'src/node.cc')
-rw-r--r-- | src/node.cc | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/node.cc b/src/node.cc index 25a5f2c275..beeebe6923 100644 --- a/src/node.cc +++ b/src/node.cc @@ -4305,14 +4305,6 @@ void Init(int* argc, // Make inherited handles noninheritable. uv_disable_stdio_inheritance(); -#if defined(NODE_HAVE_I18N_SUPPORT) - // Set the ICU casing flag early - // so the user can disable a flag --foo at run-time by passing - // --no_foo from the command line. - const char icu_case_mapping[] = "--icu_case_mapping"; - V8::SetFlagsFromString(icu_case_mapping, sizeof(icu_case_mapping) - 1); -#endif - #if defined(NODE_V8_OPTIONS) // Should come before the call to V8::SetFlagsFromCommandLine() // so the user can disable a flag --foo at run-time by passing |