summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/mruby-math
diff options
context:
space:
mode:
authorYasuhiro Matsumoto <[email protected]>2015-12-22 17:29:10 +0900
committerYasuhiro Matsumoto <[email protected]>2015-12-22 17:46:20 +0900
commit7cc33af2dc1137ef819b589e51e3756bdaa222e1 (patch)
tree16f444f586b644175032c34253a14e1e2cb403c2 /mrbgems/mruby-math
parentd0727be6eb22932aaf67447d09c9b3751516e891 (diff)
downloadmruby-7cc33af2dc1137ef819b589e51e3756bdaa222e1.tar.gz
mruby-7cc33af2dc1137ef819b589e51e3756bdaa222e1.zip
fix build on VS2012
Diffstat (limited to 'mrbgems/mruby-math')
-rw-r--r--mrbgems/mruby-math/src/math.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mrbgems/mruby-math/src/math.c b/mrbgems/mruby-math/src/math.c
index b2bd81e4e..7302b92d7 100644
--- a/mrbgems/mruby-math/src/math.c
+++ b/mrbgems/mruby-math/src/math.c
@@ -19,7 +19,7 @@ domain_error(mrb_state *mrb, const char *func)
}
/* math functions not provided by Microsoft Visual C++ 2012 or older */
-#if defined _MSC_VER && _MSC_VER < 1700
+#if defined _MSC_VER && _MSC_VER <= 1700
#include <float.h>