Fix windows compile error in previous commit.

This commit is contained in:
Brecht Van Lommel 2012-04-05 16:23:47 +00:00
parent d024238fb2
commit 91eeddc973

@ -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