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:
authorLukas Tönne <lukas.toenne@gmail.com>2014-09-24 20:00:05 +0400
committerLukas Tönne <lukas.toenne@gmail.com>2015-01-20 11:30:02 +0300
commit7d4799b41d554e2a2b56928e88a9a4afb4a3ff13 (patch)
tree4469fc010ee5d03f1694a1dbbd78fc41afbd667b /source/blender/physics
parent6394189e68ac7d3022044e851c9670b10e023cce (diff)
Have to include BLI_utildefines before BKE_collision now to have bool
defined.
Diffstat (limited to 'source/blender/physics')
-rw-r--r--source/blender/physics/intern/implicit.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/physics/intern/implicit.h b/source/blender/physics/intern/implicit.h
index b915b07b315..dd91d09cbb9 100644
--- a/source/blender/physics/intern/implicit.h
+++ b/source/blender/physics/intern/implicit.h
@@ -34,10 +34,10 @@
#include "stdio.h"
-#include "BKE_collision.h"
-
#include "BLI_utildefines.h"
+#include "BKE_collision.h"
+
#ifdef __cplusplus
extern "C" {
#endif