summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2019-04-04 05:10:32 +0900
committerGitHub <[email protected]>2019-04-04 05:10:32 +0900
commit50a223f21ff33718f3217ae61ee9fe326f14f935 (patch)
tree093a8794b9be935c7db5ba0bf1c7854422fae966
parent73feef9766c56c123039392adb0c516d9aafb02e (diff)
parentabc6c990a636058f41f9d34f12451036cb9c89fd (diff)
downloadmruby-50a223f21ff33718f3217ae61ee9fe326f14f935.tar.gz
mruby-50a223f21ff33718f3217ae61ee9fe326f14f935.zip
Merge pull request #4354 from shuujii/remove-unnecessary-_set_output_format-call
Remove unnecessary `_set_output_format` call
-rw-r--r--src/state.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/state.c b/src/state.c
index c3ce1dc33..08d7ba906 100644
--- a/src/state.c
+++ b/src/state.c
@@ -42,10 +42,6 @@ mrb_open_core(mrb_allocf f, void *ud)
mrb_init_core(mrb);
-#if !defined(MRB_DISABLE_STDIO) && defined(_MSC_VER) && _MSC_VER < 1900
- _set_output_format(_TWO_DIGIT_EXPONENT);
-#endif
-
return mrb;
}