Commit: 61b728a1999fee6c836e041b10b70b1bcf219b35
Author: Lukas Tönne
Date:   Fri May 27 11:01:37 2016 +0200
Branches: object_nodes
https://developer.blender.org/rB61b728a1999fee6c836e041b10b70b1bcf219b35

Small fixes for compiler errors in VS2013.

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

M       source/blender/blenvm/compile/typedesc.h
M       source/blender/blenvm/llvm/llvm_modules.cc

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

diff --git a/source/blender/blenvm/compile/typedesc.h 
b/source/blender/blenvm/compile/typedesc.h
index 737b27f..94a90b4 100644
--- a/source/blender/blenvm/compile/typedesc.h
+++ b/source/blender/blenvm/compile/typedesc.h
@@ -167,7 +167,7 @@ struct StructSpec;
 
 struct TypeSpec {
        typedef std::map<string, const TypeSpec *> TypeDefMap;
-       typedef typename TypeDefMap::const_iterator typedef_iterator;
+       typedef TypeDefMap::const_iterator typedef_iterator;
        
        TypeSpec(BVMType base_type, BVMBufferType buffer_type = 
BVM_BUFFER_SINGLE);
        TypeSpec(const TypeSpec &other);
diff --git a/source/blender/blenvm/llvm/llvm_modules.cc 
b/source/blender/blenvm/llvm/llvm_modules.cc
index 640becb..f99ec6d 100644
--- a/source/blender/blenvm/llvm/llvm_modules.cc
+++ b/source/blender/blenvm/llvm/llvm_modules.cc
@@ -31,6 +31,7 @@
 
 #include <map>
 #include <sstream>
+#include <stdint.h>
 
 extern "C" {
 #include "BLI_fileops.h"

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
https://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to