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:
authorAndrea Weikert <elubie@gmx.net>2014-02-02 17:37:41 +0400
committerAndrea Weikert <elubie@gmx.net>2014-02-02 17:40:52 +0400
commitdda63375b2fa581197e909c45116ac17b5f8782c (patch)
treefce12722026135088f5d407ebd2339b173b2a774 /source/blender/blenlib/intern/smallhash.c
parenta16998911b59956806000826c15a941c53bd33c1 (diff)
Fix: Compile error due to missing #define for MSVC9 (VisualC++ 2008)
Added some relevant #defines copied from extern\libmv\third_party\msinttypes to BLI_sys_types.h so they can be used in blenlib. Made smallhash.c use the BLI_sys_types.h include rather than including <stdint.h> directly
Diffstat (limited to 'source/blender/blenlib/intern/smallhash.c')
-rw-r--r--source/blender/blenlib/intern/smallhash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/smallhash.c b/source/blender/blenlib/intern/smallhash.c
index 87ac1c4a620..9177b2fae36 100644
--- a/source/blender/blenlib/intern/smallhash.c
+++ b/source/blender/blenlib/intern/smallhash.c
@@ -50,7 +50,7 @@
#include <string.h>
#include <stdlib.h>
-#include <stdint.h>
+#include <BLI_sys_types.h>
#include "MEM_guardedalloc.h"