Merge pull request #3027 from pbosetti/master

Fix check for VisualStudio Version in mruby-math gem
This commit is contained in:
Yukihiro "Matz" Matsumoto
2015-11-19 22:51:03 +09:00
+1 -1
View File
@@ -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 < 1800
#if defined _MSC_VER && _MSC_VER < 1700
#include <float.h>