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-16 13:13:32 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2012-04-16 13:13:32 +0400
commit869c69b1493b10c4fe2dcf0691069ea8718ef51d (patch)
treec0f6e8f1536cf81132d42aab9cf9e5b2a327e207 /intern/dualcon
parent1492754c8f70b92506d487527cc7f850c86c8445 (diff)
Fix for isnan compile issue on windows (second try).
Diffstat (limited to 'intern/dualcon')
-rw-r--r--intern/dualcon/intern/Projections.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/intern/dualcon/intern/Projections.h b/intern/dualcon/intern/Projections.h
index a01b4dffdb0..18533b218ff 100644
--- a/intern/dualcon/intern/Projections.h
+++ b/intern/dualcon/intern/Projections.h
@@ -30,6 +30,7 @@
#define GRID_DIMENSION 20
#if defined(_WIN32) && !defined(__MINGW32__)
+#define isnan(n) _isnan(n)
#define LONG __int64
#else
#include <stdint.h>