- Fixed a compile error on Windows:

VC98 Win32 Platform SDK does not define FP_INFINITE!

  Anyone know if VC7 is C99 compliant?
This commit is contained in:
2003-06-14 15:20:53 +00:00
parent 6dc3b9107c
commit 0b3093348e

View File

@@ -32,6 +32,10 @@
#ifndef EXPP_METABALL_H
#define EXPP_METABALL_H
#if defined(WIN32) && !defined (FP_INFINITE)
#define FP_INFINITE 1
#endif
#include <Python.h>
#include <BKE_main.h>