Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/blenlib/BLI_math_base.h')
-rw-r--r--source/blender/blenlib/BLI_math_base.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/source/blender/blenlib/BLI_math_base.h b/source/blender/blenlib/BLI_math_base.h
index f218554704d..c634c9d8228 100644
--- a/source/blender/blenlib/BLI_math_base.h
+++ b/source/blender/blenlib/BLI_math_base.h
@@ -146,14 +146,14 @@ static const int NAN_INT = 0x7FC00000;
#endif /* C99 or POSIX.1-2001 */
#ifdef WIN32
-# ifndef FREE_WINDOWS
-# if (!defined isnan) && (_MSC_VER < 1800)
-# define isnan(n) _isnan(n)
-# endif
-# define finite _finite
-# if (!defined hypot) && (_MSC_VER < 1800)
-# define hypot(a, b) _hypot(a, b)
-# endif
+# if defined(_MSC_VER)
+# if (_MSC_VER < 1800) && !defined(isnan)
+# define isnan(n) _isnan(n)
+# endif
+# define finite(n) _finite(n)
+# if (_MSC_VER < 1800) && !defined(hypot)
+# define hypot(a, b) _hypot(a, b)
+# endif
# endif
#endif