[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [42871] trunk/blender/source/blender/ blenkernel/BKE_customdata.h: include BLO_sys_types in customdata header rather than stdint directly.

Campbell Barton ideasman42 at gmail.com
Sun Dec 25 22:27:24 CET 2011


Revision: 42871
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=42871
Author:   campbellbarton
Date:     2011-12-25 21:27:23 +0000 (Sun, 25 Dec 2011)
Log Message:
-----------
include BLO_sys_types in customdata header rather than stdint directly.

Modified Paths:
--------------
    trunk/blender/source/blender/blenkernel/BKE_customdata.h

Modified: trunk/blender/source/blender/blenkernel/BKE_customdata.h
===================================================================
--- trunk/blender/source/blender/blenkernel/BKE_customdata.h	2011-12-25 19:42:26 UTC (rev 42870)
+++ trunk/blender/source/blender/blenkernel/BKE_customdata.h	2011-12-25 21:27:23 UTC (rev 42871)
@@ -34,14 +34,12 @@
 #ifndef BKE_CUSTOMDATA_H
 #define BKE_CUSTOMDATA_H
 
-#if defined(__APPLE__) && (__GNUC__ == 4) && (__GNUC_MINOR__ >= 6)
-#include <stdint.h>
-#endif
-
 #ifdef __cplusplus
 extern "C" {
 #endif
 
+#include "../blenloader/BLO_sys_types.h" /* XXX, should have a more generic include for this */
+
 struct ID;
 struct CustomData;
 struct CustomDataLayer;




More information about the Bf-blender-cvs mailing list