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:
authorThomas Dinges <blender@dingto.org>2014-02-15 17:38:49 +0400
committerThomas Dinges <blender@dingto.org>2014-02-15 17:38:49 +0400
commitaa517ab3a4b93083f0dbf7adc026310945f8d358 (patch)
tree6fe5b3cf52c11695e2e504ebacfff0ccc7ab2f88 /source/blender/blenlib/BLI_math_base.h
parent1c866c377ad66e166942acdc0a17364901ff0480 (diff)
Compile fix for 004decc1d940...
Diffstat (limited to 'source/blender/blenlib/BLI_math_base.h')
-rw-r--r--source/blender/blenlib/BLI_math_base.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/BLI_math_base.h b/source/blender/blenlib/BLI_math_base.h
index 9c77ba921e0..ef05777dc2f 100644
--- a/source/blender/blenlib/BLI_math_base.h
+++ b/source/blender/blenlib/BLI_math_base.h
@@ -240,7 +240,7 @@ MINLINE unsigned short highest_order_bit_s(unsigned short n);
MINLINE float shell_angle_to_dist(const float angle);
-#if defined(MSC_VER) && (MSC_VER < 1800)
+#if defined(_MSC_VER) && (_MSC_VER < 1800)
extern double copysign(double x, double y);
extern double round(double x);
#endif