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>2011-12-26 01:27:23 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-12-26 01:27:23 +0400
commit02d72b5c076f4ae1b47da74fe7a60a916edad9f2 (patch)
treef2e8ea94ba31c2159407c5a6fc9bc72faadd01e9 /source/blender/blenkernel/BKE_customdata.h
parenta06358570e46d675222ad649e33e96561e75c711 (diff)
include BLO_sys_types in customdata header rather than stdint directly.
Diffstat (limited to 'source/blender/blenkernel/BKE_customdata.h')
-rw-r--r--source/blender/blenkernel/BKE_customdata.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/source/blender/blenkernel/BKE_customdata.h b/source/blender/blenkernel/BKE_customdata.h
index 7e2dfa2eefc..a4cef2d6862 100644
--- a/source/blender/blenkernel/BKE_customdata.h
+++ b/source/blender/blenkernel/BKE_customdata.h
@@ -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;