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>2019-03-19 13:59:26 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-03-19 13:59:26 +0300
commita73afc7eebfea1e60e94ae334a4dc4c3fce57467 (patch)
tree011504ec7aec1b51fe1c8f824be7bf0c9e1bba2a /source/blender/blenloader
parent8f790720b07d2f92f1222157be6836ff28a46902 (diff)
readfile: add off64_t typedef for __APPLE__
Diffstat (limited to 'source/blender/blenloader')
-rw-r--r--source/blender/blenloader/intern/readfile.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenloader/intern/readfile.h b/source/blender/blenloader/intern/readfile.h
index a1af4bfad16..42b79a4a3f9 100644
--- a/source/blender/blenloader/intern/readfile.h
+++ b/source/blender/blenloader/intern/readfile.h
@@ -53,7 +53,7 @@ enum eFileDataFlag {
# pragma GCC poison off_t
#endif
-#if defined(_MSC_VER)
+#if defined(_MSC_VER) || defined(__APPLE__)
typedef int64_t off64_t;
#endif