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:
authorRay Molenkamp <github@lazydodo.com>2018-02-01 17:58:06 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-02-15 07:49:02 +0300
commit81697c772c7320fe122457620aa26058d478eacf (patch)
tree02c4e57816aeef12846d736625272b57c2206527
parent6f45c9d6c6d9ab7dc050bec2adb7244b7e769624 (diff)
Fix: msvc build error with bli_fileops.h
bli_fileops.h was using uint64_t without including the proper header. issue triggered by rBb0af44fa4d7a2e134b315c49a4fbdf573f781004
-rw-r--r--source/blender/blenlib/BLI_fileops.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/blenlib/BLI_fileops.h b/source/blender/blenlib/BLI_fileops.h
index 5c1fa57886a..bb23c63bdb3 100644
--- a/source/blender/blenlib/BLI_fileops.h
+++ b/source/blender/blenlib/BLI_fileops.h
@@ -35,6 +35,7 @@
#include <stdio.h>
#include <sys/stat.h>
+#include <stdint.h>
#ifdef __cplusplus
extern "C" {