Header file clean up and warning fixes

- Mostly this cleans up the #includes and header files in the python project.
- Warning fixes are mostly casting issues and misc fixes. General warning clean up.
- #include Python.h MUST come as the first include to avoid the POSIX redefine warning in the unix makefiles
- fno-strict-aliasing flag added to makefile to fix a unavoidable type punning warning in types.c
This commit is contained in:
2005-07-18 03:50:37 +00:00
parent 9919df089d
commit e60291d39c
103 changed files with 899 additions and 1161 deletions

View File

@@ -30,10 +30,11 @@
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
#include "logic.h"
#include "logic.h" /*This must come first*/
#include "MEM_guardedalloc.h"
#include "BLI_blenlib.h"
#include "gen_utils.h"
#include <MEM_guardedalloc.h>
#include <BLI_blenlib.h>
//--------------- Python BPy_Property methods declarations:---------------
static PyObject *Property_getName( BPy_Property * self );
@@ -121,7 +122,6 @@ int updatePyProperty( BPy_Property * self )
}
return 1;
}
return 0;
}
//--------------- updatePropertyData------------------------------------
@@ -146,7 +146,6 @@ int updateProperyData( BPy_Property * self )
}
return 1;
}
return 0;
}
//--------------- checkValidData_ptr--------------------------------
@@ -379,7 +378,7 @@ PyObject *newPropertyObject( char *name, PyObject * data, int type )
BLI_strncpy( py_property->name, name, 32 );
py_property->data = data;
py_property->type = type;
py_property->type = (short)type;
return ( PyObject * ) py_property;
}