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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2012-04-05 20:23:47 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2012-04-05 20:23:47 +0400
commit91eeddc9738a78cdab51acdf19e1a2ad82457eca (patch)
treebf2ce552d5d28db351c5483d665f529f64953784 /intern/cycles/util
parentd024238fb23e39edc49d13c71930b267aea833f1 (diff)
Fix windows compile error in previous commit.
Diffstat (limited to 'intern/cycles/util')
-rw-r--r--intern/cycles/util/util_math.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/intern/cycles/util/util_math.h b/intern/cycles/util/util_math.h
index 51dbde3e28b..045fb5c6fa0 100644
--- a/intern/cycles/util/util_math.h
+++ b/intern/cycles/util/util_math.h
@@ -64,6 +64,7 @@ CCL_NAMESPACE_BEGIN
#define copysignf(x, y) ((float)_copysign(x, y))
#define hypotf(x, y) _hypotf(x, y)
#define isnan(x) _isnan(x)
+#define isfinite(x) _finite(x)
#endif
#endif