[Bf-blender-cvs] [1deb93e1761] temp-remove-mingw: Fix missing include

Aaron Carlisle noreply at git.blender.org
Mon Apr 24 02:17:41 CEST 2017


Commit: 1deb93e17617f01db3c4e41ec454e3e061998351
Author: Aaron Carlisle
Date:   Sun Apr 23 20:15:45 2017 -0400
Branches: temp-remove-mingw
https://developer.blender.org/rB1deb93e17617f01db3c4e41ec454e3e061998351

Fix missing include

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

M	source/blender/blenlib/BLI_sys_types.h

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

diff --git a/source/blender/blenlib/BLI_sys_types.h b/source/blender/blenlib/BLI_sys_types.h
index 2ffca5dd578..9477f61713c 100644
--- a/source/blender/blenlib/BLI_sys_types.h
+++ b/source/blender/blenlib/BLI_sys_types.h
@@ -65,6 +65,12 @@ typedef uint64_t u_int64_t;
 
 #include <inttypes.h>
 
+/* MSVC >= 2010 */
+#elif defined(_MSC_VER)
+#include <stdint.h>
+
+#else
+
 /* FreeBSD, Solaris */
 #include <sys/types.h>
 #include <stdint.h>




More information about the Bf-blender-cvs mailing list