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:
authorJuergen Herrmann <shadowrom@me.com>2014-03-09 03:25:08 +0400
committerJuergen Herrmann <shadowrom@me.com>2014-03-09 03:25:08 +0400
commit5559302369ae6a17e9ad5f3c8bd9ea6eb318d87f (patch)
treeb87db634a859b33aa0ddda978cb2b7f0c8a70c26 /intern/audaspace
parent645aa96795b0ecc8f041fe20682d9b7b236009e4 (diff)
Cleanup some useless/unneeded #ifdefs for MSVC2013.
Diffstat (limited to 'intern/audaspace')
-rw-r--r--intern/audaspace/intern/AUD_ConverterFunctions.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/intern/audaspace/intern/AUD_ConverterFunctions.h b/intern/audaspace/intern/AUD_ConverterFunctions.h
index 1ffcf6c4ef0..99c03de42aa 100644
--- a/intern/audaspace/intern/AUD_ConverterFunctions.h
+++ b/intern/audaspace/intern/AUD_ConverterFunctions.h
@@ -38,8 +38,7 @@
typedef short int16_t;
typedef int int32_t;
#else
- typedef __int16 int16_t;
- typedef __int32 int32_t;
+# include <stdint.h>
#endif
#else
#include <stdint.h>