diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2015-11-19 22:51:03 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2015-11-19 22:51:03 +0900 |
| commit | 2aca5ab479895eca9891636bbae4633cd3ff3bce (patch) | |
| tree | a173098da8946d7d2e17ccec96cf46967f277821 /mrbgems/mruby-math/src/math.c | |
| parent | abc724840e268d8f1dbe413cc3e06f0c368596d6 (diff) | |
| parent | 470fce5c90248abde705d39edc0e82bfd41d7a73 (diff) | |
| download | mruby-2aca5ab479895eca9891636bbae4633cd3ff3bce.tar.gz mruby-2aca5ab479895eca9891636bbae4633cd3ff3bce.zip | |
Merge pull request #3027 from pbosetti/master
Fix check for VisualStudio Version in mruby-math gem
Diffstat (limited to 'mrbgems/mruby-math/src/math.c')
| -rw-r--r-- | mrbgems/mruby-math/src/math.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mrbgems/mruby-math/src/math.c b/mrbgems/mruby-math/src/math.c index 79ad18b90..8053f3832 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 < 1800 +#if defined _MSC_VER && _MSC_VER < 1700 #include <float.h> |
