[Bf-blender-cvs] [7e928c3bbc5] master: Fix: msvc build error with bli_fileops.h

Ray Molenkamp noreply at git.blender.org
Thu Feb 1 16:00:18 CET 2018


Commit: 7e928c3bbc5a0048a35ffe02a1244a2f04f46ca5
Author: Ray Molenkamp
Date:   Thu Feb 1 07:58:06 2018 -0700
Branches: master
https://developer.blender.org/rB7e928c3bbc5a0048a35ffe02a1244a2f04f46ca5

Fix: msvc build error with bli_fileops.h

bli_fileops.h was using uint64_t without including the proper header.

issue triggered by rBb0af44fa4d7a2e134b315c49a4fbdf573f781004

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

M	source/blender/blenlib/BLI_fileops.h

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

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" {



More information about the Bf-blender-cvs mailing list