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:
authorCampbell Barton <ideasman42@gmail.com>2015-06-20 08:17:32 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-06-20 08:17:32 +0300
commit74b32a23f7c27f03285d28d381f841e08cbbb486 (patch)
treea34bd8427760e98186d1c3fb5e647acc6550e103 /intern/audaspace
parent4addabaed8b1836b84a8d255b4ff3bb865882de5 (diff)
Cleanup: checks for unsupported MSVC versions
Diffstat (limited to 'intern/audaspace')
-rw-r--r--intern/audaspace/intern/AUD_ConverterFunctions.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/intern/audaspace/intern/AUD_ConverterFunctions.h b/intern/audaspace/intern/AUD_ConverterFunctions.h
index 7817ee88c07..eca2b327b8c 100644
--- a/intern/audaspace/intern/AUD_ConverterFunctions.h
+++ b/intern/audaspace/intern/AUD_ConverterFunctions.h
@@ -33,16 +33,7 @@
#include "AUD_Space.h"
#include <cstring>
-#ifdef _MSC_VER
-#if (_MSC_VER <= 1500)
- typedef short int16_t;
- typedef int int32_t;
-#else
-# include <stdint.h>
-#endif
-#else
#include <stdint.h>
-#endif
typedef void (*AUD_convert_f)(data_t* target, data_t* source, int length);