* Fixed compilation error. FP_INFINITE needs to be defined _after_ all header

files are included.
This commit is contained in:
2003-06-15 13:14:45 +00:00
parent 6a626aa60d
commit cada9df214
2 changed files with 4 additions and 4 deletions

View File

@@ -31,6 +31,10 @@
#include "Metaball.h" #include "Metaball.h"
#ifndef FP_INFINITE
#define FP_INFINITE 1
#endif
/*****************************************************************************/ /*****************************************************************************/
/* Function: M_Metaball_New */ /* Function: M_Metaball_New */
/* Python equivalent: Blender.Metaball.New */ /* Python equivalent: Blender.Metaball.New */

View File

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