[Bf-blender-cvs] [1b2a24aae04] master: Fix issue with uint in headers in recent own commit.

Bastien Montagne noreply at git.blender.org
Tue Jun 16 18:04:12 CEST 2020


Commit: 1b2a24aae04fd94f2b0b55f27cd9af2a0339c569
Author: Bastien Montagne
Date:   Tue Jun 16 18:03:36 2020 +0200
Branches: master
https://developer.blender.org/rB1b2a24aae04fd94f2b0b55f27cd9af2a0339c569

Fix issue with uint in headers in recent own commit.

Would break on some systems/compilers...

===================================================================

M	source/blender/blenkernel/BKE_collection.h
M	source/blender/blenkernel/BKE_object.h

===================================================================

diff --git a/source/blender/blenkernel/BKE_collection.h b/source/blender/blenkernel/BKE_collection.h
index 586d4c2d773..2db2be131df 100644
--- a/source/blender/blenkernel/BKE_collection.h
+++ b/source/blender/blenkernel/BKE_collection.h
@@ -24,6 +24,8 @@
 #include "BLI_compiler_compat.h"
 #include "BLI_ghash.h"
 #include "BLI_iterator.h"
+#include "BLI_sys_types.h"
+
 #include "DNA_listBase.h"
 
 #ifdef __cplusplus
diff --git a/source/blender/blenkernel/BKE_object.h b/source/blender/blenkernel/BKE_object.h
index 4096c4f2ec1..342e48f5016 100644
--- a/source/blender/blenkernel/BKE_object.h
+++ b/source/blender/blenkernel/BKE_object.h
@@ -23,6 +23,7 @@
  */
 
 #include "BLI_compiler_attrs.h"
+#include "BLI_sys_types.h"
 
 #include "DNA_object_enums.h"



More information about the Bf-blender-cvs mailing list