[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [45430] trunk/blender/intern/cycles/util/ util_math.h: Fix windows compile error in previous commit.

Brecht Van Lommel brechtvanlommel at pandora.be
Thu Apr 5 18:23:47 CEST 2012


Revision: 45430
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=45430
Author:   blendix
Date:     2012-04-05 16:23:47 +0000 (Thu, 05 Apr 2012)
Log Message:
-----------
Fix windows compile error in previous commit.

Modified Paths:
--------------
    trunk/blender/intern/cycles/util/util_math.h

Modified: trunk/blender/intern/cycles/util/util_math.h
===================================================================
--- trunk/blender/intern/cycles/util/util_math.h	2012-04-05 16:19:51 UTC (rev 45429)
+++ trunk/blender/intern/cycles/util/util_math.h	2012-04-05 16:23:47 UTC (rev 45430)
@@ -64,6 +64,7 @@
 #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




More information about the Bf-blender-cvs mailing list