[Bf-blender-cvs] [40d4fb9] master: Fix compile error using MSVC2008 + cmake

Daniel Genrich noreply at git.blender.org
Sun Mar 9 09:56:37 CET 2014


Commit: 40d4fb9fce92568f7cbbe634c759bd555266e47c
Author: Daniel Genrich
Date:   Sun Mar 9 09:55:49 2014 +0100
https://developer.blender.org/rB40d4fb9fce92568f7cbbe634c759bd555266e47c

Fix compile error using MSVC2008 + cmake

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

M	intern/audaspace/intern/AUD_ConverterFunctions.h

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

diff --git a/intern/audaspace/intern/AUD_ConverterFunctions.h b/intern/audaspace/intern/AUD_ConverterFunctions.h
index 99c03de..7817ee8 100644
--- a/intern/audaspace/intern/AUD_ConverterFunctions.h
+++ b/intern/audaspace/intern/AUD_ConverterFunctions.h
@@ -34,7 +34,7 @@
 
 #include <cstring>
 #ifdef _MSC_VER
-#if (_MSC_VER < 1300)
+#if (_MSC_VER <= 1500)
    typedef short             int16_t;
    typedef int               int32_t;
 #else




More information about the Bf-blender-cvs mailing list