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:
authorCampbell Barton <ideasman42@gmail.com>2008-12-28 11:49:41 +0300
committerCampbell Barton <ideasman42@gmail.com>2008-12-28 11:49:41 +0300
commitd8fa5f3db732734be0140d1daa7883f1bf34fc8d (patch)
treed5901892d6608d1a5cd88846323e68d50ac22e2a /source/blender/python/intern/bpy_util.c
parentf7f9d6a68da998f60b615ecc1ac9284ce3b29011 (diff)
include order is important here :/
Diffstat (limited to 'source/blender/python/intern/bpy_util.c')
-rw-r--r--source/blender/python/intern/bpy_util.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/python/intern/bpy_util.c b/source/blender/python/intern/bpy_util.c
index d0778f4d2e3..28d97f9bdf5 100644
--- a/source/blender/python/intern/bpy_util.c
+++ b/source/blender/python/intern/bpy_util.c
@@ -22,10 +22,11 @@
* ***** END GPL LICENSE BLOCK *****
*/
-#include "bpy_compat.h"
+
#include "bpy_util.h"
#include "BLI_dynstr.h"
#include "MEM_guardedalloc.h"
+#include "bpy_compat.h"
PyObject *BPY_flag_to_list(struct BPY_flag_def *flagdef, int flag)
{