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>2018-11-07 04:17:58 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-11-07 04:17:58 +0300
commitdca3d3ef0ef0be81de8b880ad70bc66856e8a401 (patch)
tree7f2b318a9d402e312aae3932a606cf7f9ab3a29f /source/blender/blenlib/intern/rct.c
parent59e70d5f8d68d8fa9eb34f75866578fafece8709 (diff)
Cleanup: use BLI_compiler_compat.h for BLI_INLINE
Diffstat (limited to 'source/blender/blenlib/intern/rct.c')
-rw-r--r--source/blender/blenlib/intern/rct.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/rct.c b/source/blender/blenlib/intern/rct.c
index e0d92e8a19f..5b1e378a2da 100644
--- a/source/blender/blenlib/intern/rct.c
+++ b/source/blender/blenlib/intern/rct.c
@@ -39,8 +39,10 @@
#include <limits.h>
#include <float.h>
-#include "DNA_vec_types.h"
#include "BLI_rect.h"
+#include "BLI_utildefines.h"
+
+#include "DNA_vec_types.h"
/* avoid including BLI_math */
static void unit_m4(float m[4][4]);