summaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2014-08-26 09:16:46 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2014-08-26 09:16:46 +0900
commitecda19f4024cd853d933b059ba9f082a42837096 (patch)
tree6290cf04f4579a06c6856738f82477ea1924bc98 /include
parentd0ced41f6ef3858b6e2f9f1e79baa5a0d801ea71 (diff)
parent3ac4c24534195fee82c4f9fa7cbdfa37d8eb7e4d (diff)
downloadmruby-ecda19f4024cd853d933b059ba9f082a42837096.tar.gz
mruby-ecda19f4024cd853d933b059ba9f082a42837096.zip
Merge pull request #2565 from cremno/remove-unused-msvc-strtoll-fallback
remove unused MSVC strtoll fallback
Diffstat (limited to 'include')
-rw-r--r--include/mruby/value.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/include/mruby/value.h b/include/mruby/value.h
index 30c39c5f2..b1278e3a3 100644
--- a/include/mruby/value.h
+++ b/include/mruby/value.h
@@ -59,7 +59,6 @@ MRB_API int mrb_msvc_snprintf(char *s, size_t n, const char *format, ...);
# define isnan _isnan
# define isinf(n) (!_finite(n) && !_isnan(n))
# define signbit(n) (_copysign(1.0, (n)) < 0.0)
-# define strtoll _strtoi64
# define strtof (float)strtod
static const unsigned int IEEE754_INFINITY_BITS_SINGLE = 0x7F800000;
# define INFINITY (*(float *)&IEEE754_INFINITY_BITS_SINGLE)